The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of FZSwiftUtils, reference 1.1.8 (1cd580), with Swift 6.1 for iOS using Xcode 16.3 on 25 Apr 2025 05:52:51 UTC.

Swift 6 data race errors: 184

Build Command

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

    private static var measurements = [(startTime: Double, title:String?)]()
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
open class MutableProgress: Progress {
           ^
                                    , @unchecked Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift:48:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
        let token = addObserver(forName: name, object: object, queue: queue, using: block)
                                                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift:47:98: note: parameter 'block' is implicitly non-sendable
    func observe(_ name: NSNotification.Name?, object: Any?, queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void)  -> NotificationToken {
                                                                                                 ^
                                                                                                        @Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift:63:82: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
        let token = addObserver(forName: name, object: nil, queue: queue, using: block)
                                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift:62:84: note: parameter 'block' is implicitly non-sendable
    func observe(_ name: NSNotification.Name?, queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void)  -> NotificationToken {
                                                                                   ^
                                                                                          @Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/OSHash.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
open class AsyncOperation: Operation, Pausable {
           ^
                                              , @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
open class AsyncBlockOperation: AsyncOperation {
           ^
                                              , @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:65:67: warning: capture of 'newValue' with non-sendable type 'AsyncOperation.State' in a '@Sendable' closure
                stateQueue.async(flags: .barrier) { self._state = newValue }
                                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:33:23: note: consider making enum 'State' conform to the 'Sendable' protocol
    @objc public enum State: Int, Hashable, CustomStringConvertible {
                      ^
                                                                   , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
    internal class BlockOperation: Operation {
                   ^
                                            , @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
open class PausableOperationQueue: OperationQueue {
           ^
                                                 , @unchecked Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/OutlineItem.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Reachability.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/RuntimeError.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Swizzle.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Swizzle.swift:155:14: warning: associated value 'missingMethod' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Swizzle.SelectorPair'; this is an error in the Swift 6 language mode
        case missingMethod(_ type: AnyObject.Type, _ static: Bool, _ old: Bool, SelectorPair)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Swizzle.swift:198:12: note: consider making struct 'SelectorPair' conform to the 'Sendable' protocol
    struct SelectorPair: CustomStringConvertible {
           ^
                                                , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Synchronized.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Weak.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
    struct ImageOptions: Codable, Hashable {
           ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
            let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
    struct ThumbnailOptions: Codable, Hashable {
           ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
            completionHandler(image)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionHandler(image)
            ^
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-7Y0Z4DA9NOFEPC1UX4P98JAOA.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-7Y0Z4DA9NOFEPC1UX4P98JAOA.scan
SwiftDriverJobDiscovery normal arm64 Compiling Sequence+Identifable.swift, Sequence+Keypath.swift, Sequence+Occurency.swift, Sequence+Sort.swift, Sequence+String.swift, Sequence+Unique.swift, Set+.swift, Calendar+.swift, Date+.swift, DateComponentsFormatter+.swift, DateFormatter+.swift, DateFormatter+Components.swift, DateIntervalFormatter+.swift, RelativeDateTimeFormatter+.swift, NSCalendar+.swift, DispatchQueue+.swift, DispatchWorkItem+.swift, Collection+Decode.swift, Dictionary+Codable.swift, JSONEncoderDecoder+.swift, JSONEncoderDecoder+Codable.swift, Enum+Displayable.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-EJ5UZUF8V6XUX9MSYDDD1RZZE.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-EJ5UZUF8V6XUX9MSYDDD1RZZE.scan
SwiftDriverJobDiscovery normal arm64 Compiling HTTPURLResponse+.swift, URL+Redirect.swift, URLComponents+.swift, URLRequest+.swift, URLResponse+.swift, URLSession+.swift, URLSession+Sync.swift, URLSessionConfiguration+.swift, URLSessionDataTask+Resume.swift, URLSessionTask+.swift, Notification+.swift, Operation+.swift, OperationQueue+.swift, NSExpression+.swift, NSPredicate+.swift, NSPredicate+ComparisonExpression.swift, NSPredicate+Operator.swift, Predicates.swift, Progress+.swift, CFType.swift, CaseIterable+.swift, Comparable+.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-4JGDK0J7DKA9F8H9LX8W7JGUS.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-4JGDK0J7DKA9F8H9LX8W7JGUS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-3A8LK2SUSVYKXXBS6DD4BMASV.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-3A8LK2SUSVYKXXBS6DD4BMASV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-9W8Q8EMPPCVDV9QXYOWUW7G02.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-9W8Q8EMPPCVDV9QXYOWUW7G02.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-AK5U5ERTFJVUZOHROEATS0NBU.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-AK5U5ERTFJVUZOHROEATS0NBU.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-3LPHB480G8LC9GWCPGR9KZ5OS.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-3LPHB480G8LC9GWCPGR9KZ5OS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-BCUUCYPYIY1AY3I3UD8IZHXEP.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-BCUUCYPYIY1AY3I3UD8IZHXEP.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-8XP2G99Y1OQFCG7GDVLC09POH.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-8XP2G99Y1OQFCG7GDVLC09POH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-91QNDJ0X1J6QEMUHNDPV2BTOD.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-91QNDJ0X1J6QEMUHNDPV2BTOD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-6E33MZ7H9B7KA03HRM7DCQQ7S.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-6E33MZ7H9B7KA03HRM7DCQQ7S.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-6G6ZCJ86FFYHQKJR9A6P02ENA.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-6G6ZCJ86FFYHQKJR9A6P02ENA.scan
SwiftCompile normal arm64 Compiling\ Comparable+Clamp.swift,\ Decodable+.swift,\ Equatable+.swift,\ Optional+.swift,\ SortComparator+.swift,\ Selector+.swift,\ AttributedString+.swift,\ Character+.swift,\ CharacterSet+.swift,\ NSAttributedString+.swift,\ NSRegularExpression+.swift,\ NSTextCheckingResult+.swift,\ String+.swift,\ String+HTML.swift,\ String+Height.swift,\ String+Match.swift,\ String+Random.swift,\ NSUI\ Typealias.swift,\ Operator.swift,\ CodableDefault.swift,\ DateValueCodable.swift,\ PropertyWrappers.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/Comparable+Clamp.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/Decodable+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/Equatable+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/Optional+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Selector+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/AttributedString+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/Character+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/CharacterSet+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSRegularExpression+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSTextCheckingResult+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+HTML.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/NSUI\ Typealias.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Operator.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/PropertyWrappers/CodableDefault.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/PropertyWrappers/DateValueCodable.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/PropertyWrappers/PropertyWrappers.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/Comparable+Clamp.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:43:9: warning: stored property 'handler' of 'Sendable'-conforming generic struct 'HandlerComparator' has non-sendable type '(Compared, Compared) -> ComparisonResult'; this is an error in the Swift 6 language mode
    let handler: (_ lhs: Compared, _ rhs: Compared)->ComparisonResult
        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:43:9: note: a function type must be marked '@Sendable' to conform to 'Sendable'
    let handler: (_ lhs: Compared, _ rhs: Compared)->ComparisonResult
        ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:73:16: warning: stored property 'keyPath' of 'Sendable'-conforming generic struct 'PartialKeyPathComparator' has non-sendable type 'PartialKeyPath<Compared>'; this is an error in the Swift 6 language mode
    public let keyPath: PartialKeyPath<Compared>
               ^
Swift.PartialKeyPath:1:14: note: generic class 'PartialKeyPath' does not conform to the 'Sendable' protocol
public class PartialKeyPath<Root> : AnyKeyPath {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:123:16: warning: static property 'oldestFirst' is not concurrency-safe because non-'Sendable' type 'SequenceSortOrder' may have shared mutable state; this is an error in the Swift 6 language mode
    static let oldestFirst = SequenceSortOrder.ascending
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Sort.swift:507:13: note: consider making enum 'SequenceSortOrder' conform to the 'Sendable' protocol
public enum SequenceSortOrder: Int, Hashable, Codable {
            ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:123:16: note: add '@MainActor' to make static property 'oldestFirst' part of global actor 'MainActor'
    static let oldestFirst = SequenceSortOrder.ascending
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:123:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let oldestFirst = SequenceSortOrder.ascending
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:125:16: warning: static property 'newestFirst' is not concurrency-safe because non-'Sendable' type 'SequenceSortOrder' may have shared mutable state; this is an error in the Swift 6 language mode
    static let newestFirst = SequenceSortOrder.descending
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Sort.swift:507:13: note: consider making enum 'SequenceSortOrder' conform to the 'Sendable' protocol
public enum SequenceSortOrder: Int, Hashable, Codable {
            ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:125:16: note: add '@MainActor' to make static property 'newestFirst' part of global actor 'MainActor'
    static let newestFirst = SequenceSortOrder.descending
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:125:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let newestFirst = SequenceSortOrder.descending
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:128:16: warning: static property 'smallestFirst' is not concurrency-safe because non-'Sendable' type 'SequenceSortOrder' may have shared mutable state; this is an error in the Swift 6 language mode
    static let smallestFirst = SequenceSortOrder.ascending
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Sort.swift:507:13: note: consider making enum 'SequenceSortOrder' conform to the 'Sendable' protocol
public enum SequenceSortOrder: Int, Hashable, Codable {
            ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:128:16: note: add '@MainActor' to make static property 'smallestFirst' part of global actor 'MainActor'
    static let smallestFirst = SequenceSortOrder.ascending
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:128:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let smallestFirst = SequenceSortOrder.ascending
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:130:16: warning: static property 'largestFirst' is not concurrency-safe because non-'Sendable' type 'SequenceSortOrder' may have shared mutable state; this is an error in the Swift 6 language mode
    static let largestFirst = SequenceSortOrder.descending
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Sort.swift:507:13: note: consider making enum 'SequenceSortOrder' conform to the 'Sendable' protocol
public enum SequenceSortOrder: Int, Hashable, Codable {
            ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:130:16: note: add '@MainActor' to make static property 'largestFirst' part of global actor 'MainActor'
    static let largestFirst = SequenceSortOrder.descending
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:130:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let largestFirst = SequenceSortOrder.descending
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:133:16: warning: static property 'shortestFirst' is not concurrency-safe because non-'Sendable' type 'SequenceSortOrder' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shortestFirst = SequenceSortOrder.ascending
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Sort.swift:507:13: note: consider making enum 'SequenceSortOrder' conform to the 'Sendable' protocol
public enum SequenceSortOrder: Int, Hashable, Codable {
            ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:133:16: note: add '@MainActor' to make static property 'shortestFirst' part of global actor 'MainActor'
    static let shortestFirst = SequenceSortOrder.ascending
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:133:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shortestFirst = SequenceSortOrder.ascending
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:135:16: warning: static property 'longestFirst' is not concurrency-safe because non-'Sendable' type 'SequenceSortOrder' may have shared mutable state; this is an error in the Swift 6 language mode
    static let longestFirst = SequenceSortOrder.descending
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Sort.swift:507:13: note: consider making enum 'SequenceSortOrder' conform to the 'Sendable' protocol
public enum SequenceSortOrder: Int, Hashable, Codable {
            ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:135:16: note: add '@MainActor' to make static property 'longestFirst' part of global actor 'MainActor'
    static let longestFirst = SequenceSortOrder.descending
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Protocol/SortComparator+.swift:135:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let longestFirst = SequenceSortOrder.descending
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Selector+.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
        @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
        @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:934:27: warning: static property 'automatic' is not concurrency-safe because non-'Sendable' type 'NSAttributedString.DataDocumentReadingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let automatic = DataDocumentReadingOptions()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:923:19: note: consider making struct 'DataDocumentReadingOptions' conform to the 'Sendable' protocol
    public struct DataDocumentReadingOptions {
                  ^
                                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:934:27: note: add '@MainActor' to make static property 'automatic' part of global actor 'MainActor'
        public static let automatic = DataDocumentReadingOptions()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:934:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let automatic = DataDocumentReadingOptions()
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSRegularExpression+.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSTextCheckingResult+.swift:19:16: warning: static property 'emailAddress' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var emailAddress = NSTextCheckingResult.CheckingType(rawValue: 1 << 64)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSTextCheckingResult+.swift:19:16: note: convert 'emailAddress' to a 'let' constant to make 'Sendable' shared state immutable
    static var emailAddress = NSTextCheckingResult.CheckingType(rawValue: 1 << 64)
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSTextCheckingResult+.swift:19:16: note: add '@MainActor' to make static property 'emailAddress' part of global actor 'MainActor'
    static var emailAddress = NSTextCheckingResult.CheckingType(rawValue: 1 << 64)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSTextCheckingResult+.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var emailAddress = NSTextCheckingResult.CheckingType(rawValue: 1 << 64)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:201:29: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let textField = UILabel()
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:200:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:font:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, font: NSUIFont, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:202:23: warning: main actor-isolated property 'font' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            textField.font = font
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: mutation of this property is only permitted within the actor
@property(null_resettable, nonatomic,strong) UIFont      *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:200:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:font:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, font: NSUIFont, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:203:23: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            textField.text = self
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:35:59: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSString           *text; // default is nil
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:200:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:font:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, font: NSUIFont, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:204:23: warning: main actor-isolated property 'lineBreakMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            textField.lineBreakMode = lineBreakMode
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:57:48: note: mutation of this property is only permitted within the actor
@property(nonatomic)        NSLineBreakMode    lineBreakMode;   // default is NSLineBreakByTruncatingTail. used for single and multiple lines of text
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:200:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:font:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, font: NSUIFont, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:207:38: warning: call to main actor-isolated instance method 'textRect(forBounds:limitedToNumberOfLines:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let textRect = textField.textRect(forBounds: rect, limitedToNumberOfLines: maxNumberOfLines)
                                     ^
UIKit.UILabel.textRect:2:22: note: calls to instance method 'textRect(forBounds:limitedToNumberOfLines:)' from outside of its actor context are implicitly asynchronous
@MainActor open func textRect(forBounds bounds: CGRect, limitedToNumberOfLines numberOfLines: Int) -> CGRect}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:200:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:font:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, font: NSUIFont, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:224:25: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let label = UILabel()
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:223:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:225:19: warning: main actor-isolated property 'attributedText' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            label.attributedText = self
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:60:59: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)   NSAttributedString *attributedText API_AVAILABLE(ios(6.0));  // default is nil
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:223:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:226:19: warning: main actor-isolated property 'preferredMaxLayoutWidth' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            label.preferredMaxLayoutWidth = width
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:102:30: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat preferredMaxLayoutWidth API_AVAILABLE(ios(6.0));
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:223:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:227:19: warning: main actor-isolated property 'lineBreakMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            label.lineBreakMode = lineBreakMode
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:57:48: note: mutation of this property is only permitted within the actor
@property(nonatomic)        NSLineBreakMode    lineBreakMode;   // default is NSLineBreakByTruncatingTail. used for single and multiple lines of text
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:223:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:229:34: warning: call to main actor-isolated instance method 'textRect(forBounds:limitedToNumberOfLines:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let textRect = label.textRect(forBounds: rect, limitedToNumberOfLines: maxNumberOfLines)
                                 ^
UIKit.UILabel.textRect:2:22: note: calls to instance method 'textRect(forBounds:limitedToNumberOfLines:)' from outside of its actor context are implicitly asynchronous
@MainActor open func textRect(forBounds bounds: CGRect, limitedToNumberOfLines numberOfLines: Int) -> CGRect}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Height.swift:223:14: note: add '@MainActor' to make instance method 'height(withConstrainedWidth:maxNumberOfLines:lineBreakMode:)' part of global actor 'MainActor'
        func height(withConstrainedWidth width: CGFloat, maxNumberOfLines: Int, lineBreakMode: NSLineBreakMode = .byWordWrapping) -> CGFloat {
             ^
        @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:508:27: warning: static property 'noun' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noun = StringMatchingOption(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:508:27: note: add '@MainActor' to make static property 'noun' part of global actor 'MainActor'
        public static let noun = StringMatchingOption(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:508:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noun = StringMatchingOption(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:510:27: warning: static property 'verb' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let verb = StringMatchingOption(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:510:27: note: add '@MainActor' to make static property 'verb' part of global actor 'MainActor'
        public static let verb = StringMatchingOption(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:510:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let verb = StringMatchingOption(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:512:27: warning: static property 'adjective' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let adjective = StringMatchingOption(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:512:27: note: add '@MainActor' to make static property 'adjective' part of global actor 'MainActor'
        public static let adjective = StringMatchingOption(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:512:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let adjective = StringMatchingOption(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:514:27: warning: static property 'adverb' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let adverb = StringMatchingOption(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:514:27: note: add '@MainActor' to make static property 'adverb' part of global actor 'MainActor'
        public static let adverb = StringMatchingOption(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:514:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let adverb = StringMatchingOption(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:516:27: warning: static property 'pronoun' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let pronoun = StringMatchingOption(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:516:27: note: add '@MainActor' to make static property 'pronoun' part of global actor 'MainActor'
        public static let pronoun = StringMatchingOption(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:516:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let pronoun = StringMatchingOption(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:518:27: warning: static property 'determiner' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let determiner = StringMatchingOption(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:518:27: note: add '@MainActor' to make static property 'determiner' part of global actor 'MainActor'
        public static let determiner = StringMatchingOption(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:518:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let determiner = StringMatchingOption(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:520:27: warning: static property 'preposition' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let preposition = StringMatchingOption(rawValue: 1 << 6)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:520:27: note: add '@MainActor' to make static property 'preposition' part of global actor 'MainActor'
        public static let preposition = StringMatchingOption(rawValue: 1 << 6)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:520:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let preposition = StringMatchingOption(rawValue: 1 << 6)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:522:27: warning: static property 'conjunction' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let conjunction = StringMatchingOption(rawValue: 1 << 7)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:522:27: note: add '@MainActor' to make static property 'conjunction' part of global actor 'MainActor'
        public static let conjunction = StringMatchingOption(rawValue: 1 << 7)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:522:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let conjunction = StringMatchingOption(rawValue: 1 << 7)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:524:27: warning: static property 'interjection' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let interjection = StringMatchingOption(rawValue: 1 << 8)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:524:27: note: add '@MainActor' to make static property 'interjection' part of global actor 'MainActor'
        public static let interjection = StringMatchingOption(rawValue: 1 << 8)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:524:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let interjection = StringMatchingOption(rawValue: 1 << 8)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:526:27: warning: static property 'number' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let number = StringMatchingOption(rawValue: 1 << 9)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:526:27: note: add '@MainActor' to make static property 'number' part of global actor 'MainActor'
        public static let number = StringMatchingOption(rawValue: 1 << 9)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:526:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let number = StringMatchingOption(rawValue: 1 << 9)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:528:27: warning: static property 'allLexical' 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 allLexical: StringMatchingOption = [.noun, .verb, .adjective, .adverb, .pronoun, .determiner, .preposition, .conjunction, .interjection, .number]
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:528:27: note: convert 'allLexical' to a 'let' constant to make 'Sendable' shared state immutable
        public static var allLexical: StringMatchingOption = [.noun, .verb, .adjective, .adverb, .pronoun, .determiner, .preposition, .conjunction, .interjection, .number]
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:528:27: note: add '@MainActor' to make static property 'allLexical' part of global actor 'MainActor'
        public static var allLexical: StringMatchingOption = [.noun, .verb, .adjective, .adverb, .pronoun, .determiner, .preposition, .conjunction, .interjection, .number]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:528:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var allLexical: StringMatchingOption = [.noun, .verb, .adjective, .adverb, .pronoun, .determiner, .preposition, .conjunction, .interjection, .number]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:531:27: warning: static property 'character' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let character = StringMatchingOption(rawValue: 1 << 10)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:531:27: note: add '@MainActor' to make static property 'character' part of global actor 'MainActor'
        public static let character = StringMatchingOption(rawValue: 1 << 10)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:531:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let character = StringMatchingOption(rawValue: 1 << 10)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:533:27: warning: static property 'word' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let word = StringMatchingOption(rawValue: 1 << 11)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:533:27: note: add '@MainActor' to make static property 'word' part of global actor 'MainActor'
        public static let word = StringMatchingOption(rawValue: 1 << 11)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:533:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let word = StringMatchingOption(rawValue: 1 << 11)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:535:27: warning: static property 'sentence' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let sentence = StringMatchingOption(rawValue: 1 << 12)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:535:27: note: add '@MainActor' to make static property 'sentence' part of global actor 'MainActor'
        public static let sentence = StringMatchingOption(rawValue: 1 << 12)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:535:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let sentence = StringMatchingOption(rawValue: 1 << 12)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:537:27: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let line = StringMatchingOption(rawValue: 1 << 13)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:537:27: note: add '@MainActor' to make static property 'line' part of global actor 'MainActor'
        public static let line = StringMatchingOption(rawValue: 1 << 13)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:537:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let line = StringMatchingOption(rawValue: 1 << 13)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:539:27: warning: static property 'paragraph' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let paragraph = StringMatchingOption(rawValue: 1 << 14)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:539:27: note: add '@MainActor' to make static property 'paragraph' part of global actor 'MainActor'
        public static let paragraph = StringMatchingOption(rawValue: 1 << 14)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:539:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let paragraph = StringMatchingOption(rawValue: 1 << 14)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:542:27: warning: static property 'date' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let date = StringMatchingOption(rawValue: 1 << 15)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:542:27: note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
        public static let date = StringMatchingOption(rawValue: 1 << 15)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:542:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let date = StringMatchingOption(rawValue: 1 << 15)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:544:27: warning: static property 'link' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let link = StringMatchingOption(rawValue: 1 << 16)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:544:27: note: add '@MainActor' to make static property 'link' part of global actor 'MainActor'
        public static let link = StringMatchingOption(rawValue: 1 << 16)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:544:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let link = StringMatchingOption(rawValue: 1 << 16)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:546:27: warning: static property 'personalName' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let personalName = StringMatchingOption(rawValue: 1 << 17)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:546:27: note: add '@MainActor' to make static property 'personalName' part of global actor 'MainActor'
        public static let personalName = StringMatchingOption(rawValue: 1 << 17)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:546:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let personalName = StringMatchingOption(rawValue: 1 << 17)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:548:27: warning: static property 'organizationName' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let organizationName = StringMatchingOption(rawValue: 1 << 18)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:548:27: note: add '@MainActor' to make static property 'organizationName' part of global actor 'MainActor'
        public static let organizationName = StringMatchingOption(rawValue: 1 << 18)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:548:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let organizationName = StringMatchingOption(rawValue: 1 << 18)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:550:27: warning: static property 'placeName' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let placeName = StringMatchingOption(rawValue: 1 << 19)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:550:27: note: add '@MainActor' to make static property 'placeName' part of global actor 'MainActor'
        public static let placeName = StringMatchingOption(rawValue: 1 << 19)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:550:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let placeName = StringMatchingOption(rawValue: 1 << 19)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:552:27: warning: static property 'phoneNumber' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let phoneNumber = StringMatchingOption(rawValue: 1 << 20)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:552:27: note: add '@MainActor' to make static property 'phoneNumber' part of global actor 'MainActor'
        public static let phoneNumber = StringMatchingOption(rawValue: 1 << 20)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:552:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let phoneNumber = StringMatchingOption(rawValue: 1 << 20)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:554:27: warning: static property 'emailAddress' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let emailAddress = StringMatchingOption(rawValue: 1 << 21)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:554:27: note: add '@MainActor' to make static property 'emailAddress' part of global actor 'MainActor'
        public static let emailAddress = StringMatchingOption(rawValue: 1 << 21)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:554:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let emailAddress = StringMatchingOption(rawValue: 1 << 21)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:556:27: warning: static property 'address' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let address = StringMatchingOption(rawValue: 1 << 22)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:556:27: note: add '@MainActor' to make static property 'address' part of global actor 'MainActor'
        public static let address = StringMatchingOption(rawValue: 1 << 22)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:556:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let address = StringMatchingOption(rawValue: 1 << 22)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:558:27: warning: static property 'transitInformation' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let transitInformation = StringMatchingOption(rawValue: 1 << 23)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:558:27: note: add '@MainActor' to make static property 'transitInformation' part of global actor 'MainActor'
        public static let transitInformation = StringMatchingOption(rawValue: 1 << 23)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:558:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let transitInformation = StringMatchingOption(rawValue: 1 << 23)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:560:27: warning: static property 'hashtag' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let hashtag = StringMatchingOption(rawValue: 1 << 24)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:560:27: note: add '@MainActor' to make static property 'hashtag' part of global actor 'MainActor'
        public static let hashtag = StringMatchingOption(rawValue: 1 << 24)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:560:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let hashtag = StringMatchingOption(rawValue: 1 << 24)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:562:27: warning: static property 'reply' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let reply = StringMatchingOption(rawValue: 1 << 25)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:562:27: note: add '@MainActor' to make static property 'reply' part of global actor 'MainActor'
        public static let reply = StringMatchingOption(rawValue: 1 << 25)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:562:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let reply = StringMatchingOption(rawValue: 1 << 25)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:565:27: warning: static property 'regularExpression' is not concurrency-safe because non-'Sendable' type 'String.StringMatchingOption' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let regularExpression = StringMatchingOption(rawValue: 1 << 26)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:506:19: note: consider making struct 'StringMatchingOption' conform to the 'Sendable' protocol
    public struct StringMatchingOption: OptionSet, Codable {
                  ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:565:27: note: add '@MainActor' to make static property 'regularExpression' part of global actor 'MainActor'
        public static let regularExpression = StringMatchingOption(rawValue: 1 << 26)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Match.swift:565:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let regularExpression = StringMatchingOption(rawValue: 1 << 26)
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:18:27: warning: static property 'numbers' is not concurrency-safe because non-'Sendable' type 'String.RandomizationType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let numbers = RandomizationType(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:16:12: note: consider making struct 'RandomizationType' conform to the 'Sendable' protocol
    struct RandomizationType: OptionSet, Codable {
           ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:18:27: note: add '@MainActor' to make static property 'numbers' part of global actor 'MainActor'
        public static let numbers = RandomizationType(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:18:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let numbers = RandomizationType(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:20:27: warning: static property 'letters' is not concurrency-safe because non-'Sendable' type 'String.RandomizationType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let letters = RandomizationType(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:16:12: note: consider making struct 'RandomizationType' conform to the 'Sendable' protocol
    struct RandomizationType: OptionSet, Codable {
           ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:20:27: note: add '@MainActor' to make static property 'letters' part of global actor 'MainActor'
        public static let letters = RandomizationType(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:20:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let letters = RandomizationType(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:22:27: warning: static property 'lettersUppercase' is not concurrency-safe because non-'Sendable' type 'String.RandomizationType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let lettersUppercase = RandomizationType(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:16:12: note: consider making struct 'RandomizationType' conform to the 'Sendable' protocol
    struct RandomizationType: OptionSet, Codable {
           ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:22:27: note: add '@MainActor' to make static property 'lettersUppercase' part of global actor 'MainActor'
        public static let lettersUppercase = RandomizationType(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:22:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let lettersUppercase = RandomizationType(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:24:27: warning: static property 'symbols' is not concurrency-safe because non-'Sendable' type 'String.RandomizationType' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let symbols = RandomizationType(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:16:12: note: consider making struct 'RandomizationType' conform to the 'Sendable' protocol
    struct RandomizationType: OptionSet, Codable {
           ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:24:27: note: add '@MainActor' to make static property 'symbols' part of global actor 'MainActor'
        public static let symbols = RandomizationType(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:24:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let symbols = RandomizationType(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:26:27: warning: static property 'allLetters' 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 allLetters: RandomizationType = [.letters, .lettersUppercase]
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:26:27: note: convert 'allLetters' to a 'let' constant to make 'Sendable' shared state immutable
        public static var allLetters: RandomizationType = [.letters, .lettersUppercase]
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:26:27: note: add '@MainActor' to make static property 'allLetters' part of global actor 'MainActor'
        public static var allLetters: RandomizationType = [.letters, .lettersUppercase]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:26:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var allLetters: RandomizationType = [.letters, .lettersUppercase]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:28:27: warning: static property 'all' 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 all: RandomizationType = [.letters, .lettersUppercase, .numbers, .symbols]
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:28:27: note: convert 'all' to a 'let' constant to make 'Sendable' shared state immutable
        public static var all: RandomizationType = [.letters, .lettersUppercase, .numbers, .symbols]
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:28:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static var all: RandomizationType = [.letters, .lettersUppercase, .numbers, .symbols]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/String+Random.swift:28:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var all: RandomizationType = [.letters, .lettersUppercase, .numbers, .symbols]
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/NSUI\ Typealias.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-1EMLU7J3I80GOUC8VIG41UOU9.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-1EMLU7J3I80GOUC8VIG41UOU9.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-31SCLFUBXSOSVMLNAGJRMJSLS.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-31SCLFUBXSOSVMLNAGJRMJSLS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-5XCTAHS6WFLJ2Z0ZAVDWY8O2.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-5XCTAHS6WFLJ2Z0ZAVDWY8O2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-CKAU6L1KKZ11DADERH80DI23T.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-CKAU6L1KKZ11DADERH80DI23T.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-4OE3PGUPXJL908RD05GIPEM9S.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-4OE3PGUPXJL908RD05GIPEM9S.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-13DZFXAFPNRHFBTWWCIAY38T4.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-13DZFXAFPNRHFBTWWCIAY38T4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-AGXGGXBJB6ZPUARC1ZR392IT.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-AGXGGXBJB6ZPUARC1ZR392IT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-DUH87ZXS9J3479PJH7Z2F3J9Z.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-DUH87ZXS9J3479PJH7Z2F3J9Z.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-7K520QZX8FG5GDXRF0RUT3RAY.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-7K520QZX8FG5GDXRF0RUT3RAY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-E97CQ6GUI4TZ860LYLJK09VZM.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-E97CQ6GUI4TZ860LYLJK09VZM.scan
SwiftDriverJobDiscovery normal arm64 Compiling Enum+Name.swift, FileAttributes.swift, FileManager+.swift, FileType.swift, NSMetadata+.swift, URL+.swift, URL+DirectoryEnumerator.swift, URL+ExtendedAttributes.swift, URL+File.swift, URL+Item.swift, URL+ResourceValue.swift, URL+fileSystemItem.swift, URLResources.swift, UTType+.swift, Digest+.swift, HashFunction+.swift, Hasher+.swift, KeyPath+.swift, Locale+.swift, Locale+Currency.swift, Logger+.swift, Accelerate+Operator.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-5ADERXWABV3SJEKQEEZU1XGDR.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-5ADERXWABV3SJEKQEEZU1XGDR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-27AWEE981SCGFTDUT4B3CYFCO.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-27AWEE981SCGFTDUT4B3CYFCO.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-EDRERJOHWPEIXR6I6IJNW72SL.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-EDRERJOHWPEIXR6I6IJNW72SL.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-C1TNHXSTUZAOH8GZMWPW9HXRI.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-C1TNHXSTUZAOH8GZMWPW9HXRI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-4YOC8ANCKB79WKE2ESD8FG0HI.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-4YOC8ANCKB79WKE2ESD8FG0HI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-BR934CZ2IWUPJVN0AZFG17AVI.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-BR934CZ2IWUPJVN0AZFG17AVI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-DR9B6U34G59AS2CC2FMUPMBW.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-DR9B6U34G59AS2CC2FMUPMBW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-5RHB07B5HPKDEMJ5TUV2U622J.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-5RHB07B5HPKDEMJ5TUV2U622J.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-909TAREXESOL43XQVLC87KPOR.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-909TAREXESOL43XQVLC87KPOR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-GW4NT1MDOMV9TBKNHZ83D9CQ.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-GW4NT1MDOMV9TBKNHZ83D9CQ.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for FZSwiftUtils (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftDriver\ Compilation\ Requirements FZSwiftUtils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    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 FZSwiftUtils -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/_SuperBuilder.modulemap -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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils+ObjC/SuperBuilder/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-9G3CCTCGJP9TC8EHA1KS8QJWN.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-9G3CCTCGJP9TC8EHA1KS8QJWN.scan
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/FZSwiftUtils-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-Swift.h (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/FZSwiftUtils-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftmodule (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftdoc (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.abi.json (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.swiftmodule/arm64-apple-ios.abi.json
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-3FCJE2HPAPRDOQFGQE4H16799.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-3FCJE2HPAPRDOQFGQE4H16799.scan
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftsourceinfo (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-4P8H0BK1F80QMZC1CK537VBI8.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-4P8H0BK1F80QMZC1CK537VBI8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-6QI34V1LYZ03YGYY5UHSISC5F.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-6QI34V1LYZ03YGYY5UHSISC5F.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-6NUOVREKQWRSOZENWTE77A3OY.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-6NUOVREKQWRSOZENWTE77A3OY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-6YMT5BZ27Q6OA7I3FRVVVNTYI.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-6YMT5BZ27Q6OA7I3FRVVVNTYI.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-BA0Y6QPNDGDMJ8SSNPPU4GHP4.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-BA0Y6QPNDGDMJ8SSNPPU4GHP4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-6ASZCNOON100WR5K61ZRHPJF3.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-6ASZCNOON100WR5K61ZRHPJF3.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-9WIMTGAM8A35Y6MPSQRTJNLRE.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-9WIMTGAM8A35Y6MPSQRTJNLRE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-59RS0FGA8XT5V4DXG7J872PHF.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-59RS0FGA8XT5V4DXG7J872PHF.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-4BOC5UEOM4I4NKR1EZBZ6NLG1.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-4BOC5UEOM4I4NKR1EZBZ6NLG1.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-AI1XT3GRSA9A8ASRJHBRTAWR3.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-AI1XT3GRSA9A8ASRJHBRTAWR3.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-1PJ7TJ5NE0BF0D2AEHKTIJ14L.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-1PJ7TJ5NE0BF0D2AEHKTIJ14L.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-ESVMG0ONHWSXYN5TV5233DAVY.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-ESVMG0ONHWSXYN5TV5233DAVY.scan
SwiftDriverJobDiscovery normal arm64 Compiling Bundle+.swift, ByteCountFormatter+.swift, CVTimeStamp+.swift, Array+.swift, Collection+.swift, Collection+Advance.swift, Collection+Average.swift, Collection+Chunk.swift, Collection+Indexed.swift, Collection+LazySplit.swift, Collection+Random.swift, Collection+Sort.swift, CollectionDifference+.swift, Dictionary+.swift, Dictionary+Merge.swift, IndexPath+.swift, OptionSet+.swift, Sequence+.swift, Sequence+Collect.swift, Sequence+Concurrency.swift, Sequence+Difference.swift, Sequence+Flat.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-4IHL6TD6LG7R7OBV5QF9UZLWE.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-4IHL6TD6LG7R7OBV5QF9UZLWE.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-9U8JAXJSORSGZ24RLBE2BWOMY.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-9U8JAXJSORSGZ24RLBE2BWOMY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-D0DYSF6IFP387R1PI6AOXBDMR.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-D0DYSF6IFP387R1PI6AOXBDMR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-7YZY6UOSI5BND0LA4C5K0ASP8.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-7YZY6UOSI5BND0LA4C5K0ASP8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-1UK6S4P0BPZ7Q5XZTR63889XB.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-1UK6S4P0BPZ7Q5XZTR63889XB.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-AQG9UZREKAWIOOBWGD2HL3UXD.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-AQG9UZREKAWIOOBWGD2HL3UXD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-CBJUWN6T8L0PSOISS9SRL2CZ6.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-CBJUWN6T8L0PSOISS9SRL2CZ6.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-4YU618JLBQ7N8A19JJ8PXQZZ7.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-4YU618JLBQ7N8A19JJ8PXQZZ7.scan
SwiftDriverJobDiscovery normal arm64 Compiling GIFImageProperties.swift, HEICImageProperties.swift, IPTCImageProperties.swift, ImageProperties.swift, JPEGImageProperties.swift, PNGImageProperties.swift, TIFFImageProperties.swift, ImageSource.swift, KeyValueCodable.swift, MeasureTime.swift, MutableProgress.swift, NotificationToken.swift, OSHash.swift, AsyncOperation.swift, PausableOperationQueue.swift, OutlineItem.swift, Reachability.swift, RuntimeError.swift, Swizzle.swift, Synchronized.swift, Weak.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftDriverJobDiscovery normal arm64 Compiling NSKeyedUnarchiver+.swift, Interpose+AnyHook.swift, Interpose+ClassHook.swift, Interpose+Error.swift, Interpose+HookFinder.swift, Interpose+ObjectHook+Optional.swift, Interpose+ObjectHook.swift, Interpose+Subclass.swift, Interpose.swift, KVObserver.swift, KeyValueObservation.swift, KeyValueObserver.swift, NSObject+.swift, NSObject+KeyPath.swift, NSObject+Observe.swift, NSObject+Reflection.swift, NSObject+Swizzle.swift, NSRectEdge+.swift, NSRunningApplication+.swift, NSUIRectEdge+.swift, NSWorkspace+.swift, HTTPCookieStorage+.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftDriverJobDiscovery normal arm64 Compiling Defaults.swift, FSEvent+Actions.swift, FSEvent+Flags.swift, FSEvent+ItemType.swift, FSEvent.swift, FSEventMonitor+Options.swift, FSEventMonitor.swift, FileConvertible.swift, CGImageFrame.swift, ImageFrameSequence.swift, ImageSequence.swift, ImageOptions.swift, EXIF+HumanReadable.swift, EXIFImageProperties.swift, Canon.swift, ColorModel.swift, EXIF+Extended.swift, GPS.swift, ImageProperties+Keys.swift, Nikon.swift, PNG+Extended.swift, TIFF+Extended.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-A899VHNSCYCQGVE6TRVLSGG6G.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-A899VHNSCYCQGVE6TRVLSGG6G.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-A5NF71B2O8F8IC3X6HQBDPTSD.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-A5NF71B2O8F8IC3X6HQBDPTSD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-EQKJL5UFUZLUSBAJZ6DOOT4DR.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-EQKJL5UFUZLUSBAJZ6DOOT4DR.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-DEC0811FC2D884EL12TCWNRSS.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-DEC0811FC2D884EL12TCWNRSS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-ASG24RS5DEUGS85VMS0FXVONJ.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-ASG24RS5DEUGS85VMS0FXVONJ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-7VIC980W128HBTU6QT9M3VE9Z.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-7VIC980W128HBTU6QT9M3VE9Z.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-3RWLJGT9IFKWLY0XOB8ANEVMF.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-3RWLJGT9IFKWLY0XOB8ANEVMF.scan
SwiftDriverJobDiscovery normal arm64 Compiling ApproximateEquatable.swift, Bool+.swift, CGPoint+.swift, CGRect+.swift, CGSize+.swift, FloatingPoint+.swift, FloatingPoint+Initializable.swift, FloatingPoint+Rounding.swift, Int+.swift, MultiplicativeArithmetic.swift, NSNumber+.swift, NSRange+.swift, NSValue+.swift, Number+Interpolate.swift, Number+String.swift, NumberFormatter+.swift, NumberFormatter+String.swift, Range+.swift, TimeInterval+.swift, Mirror+.swift, NSCoder+.swift, NSError+.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-1SYJRD918X473YDYJLR4CXT7D.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-1SYJRD918X473YDYJLR4CXT7D.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-7QQMD9LNOBMKSRM0DMFZZ7B5Q.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-7QQMD9LNOBMKSRM0DMFZZ7B5Q.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-4J9U4PUIRJVONZF3T5RJLU2AO.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-4J9U4PUIRJVONZF3T5RJLU2AO.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-94O9DSO60DU4W3NB6QHD2IHTX.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-94O9DSO60DU4W3NB6QHD2IHTX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-EW7JS94TG7G14EM0TVBX052RQ.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-EW7JS94TG7G14EM0TVBX052RQ.scan
SwiftDriverJobDiscovery normal arm64 Compiling ApplicationInfo.swift, FileTypeDefinition.swift, AssociatedValue.swift, BaseArray.swift, BaseDictionary.swift, Deque.swift, OrderedDictionary.swift, OrderedSet.swift, Queue.swift, SelectableArray.swift, Stack.swift, SynchronizedArray.swift, SynchronizedDictionary.swift, DataSize.swift, FractionalPoint.swift, NSRectCorner.swift, Point3D.swift, RectEdge.swift, RectEdgeCorner.swift, Rotation.swift, Scale.swift, TimeDuration.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.o /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils+ObjC/SuperBuilder/SuperBuilder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target '_SuperBuilder' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.dia -c /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils+ObjC/SuperBuilder/SuperBuilder.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.o -index-unit-output-path /FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SuperBuilder.o normal (in target '_SuperBuilder' from project 'FZSwiftUtils')
    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-ios14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/_SuperBuilder.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/_SuperBuilder_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/_SuperBuilder.build/Objects-normal/arm64/_SuperBuilder_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SuperBuilder.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SuperBuilder.o (in target '_SuperBuilder' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SuperBuilder.o
SwiftDriverJobDiscovery normal arm64 Compiling Comparable+Clamp.swift, Decodable+.swift, Equatable+.swift, Optional+.swift, SortComparator+.swift, Selector+.swift, AttributedString+.swift, Character+.swift, CharacterSet+.swift, NSAttributedString+.swift, NSRegularExpression+.swift, NSTextCheckingResult+.swift, String+.swift, String+HTML.swift, String+Height.swift, String+Match.swift, String+Random.swift, NSUI Typealias.swift, Operator.swift, CodableDefault.swift, DateValueCodable.swift, PropertyWrappers.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftDriver\ Compilation FZSwiftUtils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    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 FZSwiftUtils -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/_SuperBuilder.modulemap -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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils+ObjC/SuperBuilder/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.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/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.o normal (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    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-ios14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.o
ExtractAppIntentsMetadata (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    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 FZSwiftUtils --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.FZSwiftUtils --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.appintents --target-triple arm64-apple-ios14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/FZSwiftUtils.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/FZSwiftUtils.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-iphoneos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-24 22:52:50.064 appintentsmetadataprocessor[789:4509] Starting appintentsmetadataprocessor export
2025-04-24 22:52:50.106 appintentsmetadataprocessor[789:4509] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.o (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FZSwiftUtils.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FZSwiftUtils",
  "name" : "FZSwiftUtils",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "FZSwiftUtils",
      "targets" : [
        "FZSwiftUtils"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "_SuperBuilder",
      "module_type" : "ClangTarget",
      "name" : "_SuperBuilder",
      "path" : "Sources/FZSwiftUtils+ObjC/SuperBuilder",
      "product_memberships" : [
        "FZSwiftUtils"
      ],
      "sources" : [
        "SuperBuilder.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FZSwiftUtils",
      "module_type" : "SwiftTarget",
      "name" : "FZSwiftUtils",
      "path" : "Sources/FZSwiftUtils",
      "product_memberships" : [
        "FZSwiftUtils"
      ],
      "sources" : [
        "Extensions/Bundle+.swift",
        "Extensions/ByteCountFormatter+.swift",
        "Extensions/CVTimeStamp+.swift",
        "Extensions/Collections/Array+.swift",
        "Extensions/Collections/Collection+.swift",
        "Extensions/Collections/Collection+Advance.swift",
        "Extensions/Collections/Collection+Average.swift",
        "Extensions/Collections/Collection+Chunk.swift",
        "Extensions/Collections/Collection+Indexed.swift",
        "Extensions/Collections/Collection+LazySplit.swift",
        "Extensions/Collections/Collection+Random.swift",
        "Extensions/Collections/Collection+Sort.swift",
        "Extensions/Collections/CollectionDifference+.swift",
        "Extensions/Collections/Dictionary+.swift",
        "Extensions/Collections/Dictionary+Merge.swift",
        "Extensions/Collections/IndexPath+.swift",
        "Extensions/Collections/OptionSet+.swift",
        "Extensions/Collections/Sequence+.swift",
        "Extensions/Collections/Sequence+Collect.swift",
        "Extensions/Collections/Sequence+Concurrency.swift",
        "Extensions/Collections/Sequence+Difference.swift",
        "Extensions/Collections/Sequence+Flat.swift",
        "Extensions/Collections/Sequence+Identifable.swift",
        "Extensions/Collections/Sequence+Keypath.swift",
        "Extensions/Collections/Sequence+Occurency.swift",
        "Extensions/Collections/Sequence+Sort.swift",
        "Extensions/Collections/Sequence+String.swift",
        "Extensions/Collections/Sequence+Unique.swift",
        "Extensions/Collections/Set+.swift",
        "Extensions/Date & Time/Calendar+.swift",
        "Extensions/Date & Time/Date+.swift",
        "Extensions/Date & Time/Formatter/DateComponentsFormatter+.swift",
        "Extensions/Date & Time/Formatter/DateFormatter+.swift",
        "Extensions/Date & Time/Formatter/DateFormatter+Components.swift",
        "Extensions/Date & Time/Formatter/DateIntervalFormatter+.swift",
        "Extensions/Date & Time/Formatter/RelativeDateTimeFormatter+.swift",
        "Extensions/Date & Time/NSCalendar+.swift",
        "Extensions/DispatchQueue+.swift",
        "Extensions/DispatchWorkItem+.swift",
        "Extensions/Encoding & Decoding/Collection+Decode.swift",
        "Extensions/Encoding & Decoding/Dictionary+Codable.swift",
        "Extensions/Encoding & Decoding/JSONEncoderDecoder+.swift",
        "Extensions/Encoding & Decoding/JSONEncoderDecoder+Codable.swift",
        "Extensions/Enum/Enum+Displayable.swift",
        "Extensions/Enum/Enum+Name.swift",
        "Extensions/File & URL/FileAttributes.swift",
        "Extensions/File & URL/FileManager+.swift",
        "Extensions/File & URL/FileType.swift",
        "Extensions/File & URL/NSMetadata+.swift",
        "Extensions/File & URL/URL+.swift",
        "Extensions/File & URL/URL+DirectoryEnumerator.swift",
        "Extensions/File & URL/URL+ExtendedAttributes.swift",
        "Extensions/File & URL/URL+File.swift",
        "Extensions/File & URL/URL+Item.swift",
        "Extensions/File & URL/URL+ResourceValue.swift",
        "Extensions/File & URL/URL+fileSystemItem.swift",
        "Extensions/File & URL/URLResources.swift",
        "Extensions/File & URL/UTType+.swift",
        "Extensions/Hash/Digest+.swift",
        "Extensions/Hash/HashFunction+.swift",
        "Extensions/Hash/Hasher+.swift",
        "Extensions/KeyPath+.swift",
        "Extensions/Locale+.swift",
        "Extensions/Locale+Currency.swift",
        "Extensions/Logger+.swift",
        "Extensions/Math & Geometry/Accelerate+Operator.swift",
        "Extensions/Math & Geometry/ApproximateEquatable.swift",
        "Extensions/Math & Geometry/Bool+.swift",
        "Extensions/Math & Geometry/CGPoint+.swift",
        "Extensions/Math & Geometry/CGRect+.swift",
        "Extensions/Math & Geometry/CGSize+.swift",
        "Extensions/Math & Geometry/FloatingPoint+.swift",
        "Extensions/Math & Geometry/FloatingPoint+Initializable.swift",
        "Extensions/Math & Geometry/FloatingPoint+Rounding.swift",
        "Extensions/Math & Geometry/Int+.swift",
        "Extensions/Math & Geometry/MultiplicativeArithmetic.swift",
        "Extensions/Math & Geometry/NSNumber+.swift",
        "Extensions/Math & Geometry/NSRange+.swift",
        "Extensions/Math & Geometry/NSValue+.swift",
        "Extensions/Math & Geometry/Number+Interpolate.swift",
        "Extensions/Math & Geometry/Number+String.swift",
        "Extensions/Math & Geometry/NumberFormatter+.swift",
        "Extensions/Math & Geometry/NumberFormatter+String.swift",
        "Extensions/Math & Geometry/Range+.swift",
        "Extensions/Math & Geometry/TimeInterval+.swift",
        "Extensions/Mirror+.swift",
        "Extensions/NSCoder+.swift",
        "Extensions/NSError+.swift",
        "Extensions/NSKeyedUnarchiver+.swift",
        "Extensions/NSObject/Interpose/Interpose+AnyHook.swift",
        "Extensions/NSObject/Interpose/Interpose+ClassHook.swift",
        "Extensions/NSObject/Interpose/Interpose+Error.swift",
        "Extensions/NSObject/Interpose/Interpose+HookFinder.swift",
        "Extensions/NSObject/Interpose/Interpose+ObjectHook+Optional.swift",
        "Extensions/NSObject/Interpose/Interpose+ObjectHook.swift",
        "Extensions/NSObject/Interpose/Interpose+Subclass.swift",
        "Extensions/NSObject/Interpose/Interpose.swift",
        "Extensions/NSObject/KVO/KVObserver.swift",
        "Extensions/NSObject/KVO/KeyValueObservation.swift",
        "Extensions/NSObject/KVO/KeyValueObserver.swift",
        "Extensions/NSObject/NSObject+.swift",
        "Extensions/NSObject/NSObject+KeyPath.swift",
        "Extensions/NSObject/NSObject+Observe.swift",
        "Extensions/NSObject/NSObject+Reflection.swift",
        "Extensions/NSObject/NSObject+Swizzle.swift",
        "Extensions/NSRectEdge+.swift",
        "Extensions/NSRunningApplication+.swift",
        "Extensions/NSUIRectEdge+.swift",
        "Extensions/NSWorkspace+.swift",
        "Extensions/Networking/HTTPCookieStorage+.swift",
        "Extensions/Networking/HTTPURLResponse+.swift",
        "Extensions/Networking/URL+Redirect.swift",
        "Extensions/Networking/URLComponents+.swift",
        "Extensions/Networking/URLRequest+.swift",
        "Extensions/Networking/URLResponse+.swift",
        "Extensions/Networking/URLSession+.swift",
        "Extensions/Networking/URLSession+Sync.swift",
        "Extensions/Networking/URLSessionConfiguration+.swift",
        "Extensions/Networking/URLSessionDataTask+Resume.swift",
        "Extensions/Networking/URLSessionTask+.swift",
        "Extensions/Notification+.swift",
        "Extensions/Operation+.swift",
        "Extensions/OperationQueue+.swift",
        "Extensions/Predicate/NSExpression+.swift",
        "Extensions/Predicate/NSPredicate+.swift",
        "Extensions/Predicate/NSPredicate+ComparisonExpression.swift",
        "Extensions/Predicate/NSPredicate+Operator.swift",
        "Extensions/Predicate/Predicates.swift",
        "Extensions/Progress+.swift",
        "Extensions/Protocol/CFType.swift",
        "Extensions/Protocol/CaseIterable+.swift",
        "Extensions/Protocol/Comparable+.swift",
        "Extensions/Protocol/Comparable+Clamp.swift",
        "Extensions/Protocol/Decodable+.swift",
        "Extensions/Protocol/Equatable+.swift",
        "Extensions/Protocol/Optional+.swift",
        "Extensions/Protocol/SortComparator+.swift",
        "Extensions/Selector+.swift",
        "Extensions/String/AttributedString+.swift",
        "Extensions/String/Character+.swift",
        "Extensions/String/CharacterSet+.swift",
        "Extensions/String/NSAttributedString+.swift",
        "Extensions/String/NSRegularExpression+.swift",
        "Extensions/String/NSTextCheckingResult+.swift",
        "Extensions/String/String+.swift",
        "Extensions/String/String+HTML.swift",
        "Extensions/String/String+Height.swift",
        "Extensions/String/String+Match.swift",
        "Extensions/String/String+Random.swift",
        "NSUI Typealias.swift",
        "Operator.swift",
        "PropertyWrappers/CodableDefault.swift",
        "PropertyWrappers/DateValueCodable.swift",
        "PropertyWrappers/PropertyWrappers.swift",
        "Utils/ApplicationBundle/ApplicationInfo.swift",
        "Utils/ApplicationBundle/FileTypeDefinition.swift",
        "Utils/AssociatedValue.swift",
        "Utils/Collections/BaseArray.swift",
        "Utils/Collections/BaseDictionary.swift",
        "Utils/Collections/Deque.swift",
        "Utils/Collections/OrderedDictionary.swift",
        "Utils/Collections/OrderedSet.swift",
        "Utils/Collections/Queue.swift",
        "Utils/Collections/SelectableArray.swift",
        "Utils/Collections/Stack.swift",
        "Utils/Collections/SynchronizedArray.swift",
        "Utils/Collections/SynchronizedDictionary.swift",
        "Utils/Datatypes/DataSize.swift",
        "Utils/Datatypes/FractionalPoint.swift",
        "Utils/Datatypes/NSRectCorner.swift",
        "Utils/Datatypes/Point3D.swift",
        "Utils/Datatypes/RectEdge.swift",
        "Utils/Datatypes/RectEdgeCorner.swift",
        "Utils/Datatypes/Rotation.swift",
        "Utils/Datatypes/Scale.swift",
        "Utils/Datatypes/TimeDuration.swift",
        "Utils/Defaults.swift",
        "Utils/FSEventMonitor/FSEvent+Actions.swift",
        "Utils/FSEventMonitor/FSEvent+Flags.swift",
        "Utils/FSEventMonitor/FSEvent+ItemType.swift",
        "Utils/FSEventMonitor/FSEvent.swift",
        "Utils/FSEventMonitor/FSEventMonitor+Options.swift",
        "Utils/FSEventMonitor/FSEventMonitor.swift",
        "Utils/FileConvertible.swift",
        "Utils/ImageSource/AsymcSequence/CGImageFrame.swift",
        "Utils/ImageSource/AsymcSequence/ImageFrameSequence.swift",
        "Utils/ImageSource/AsymcSequence/ImageSequence.swift",
        "Utils/ImageSource/ImageOptions.swift",
        "Utils/ImageSource/ImageProperties/EXIF+HumanReadable.swift",
        "Utils/ImageSource/ImageProperties/EXIFImageProperties.swift",
        "Utils/ImageSource/ImageProperties/Extended/Canon.swift",
        "Utils/ImageSource/ImageProperties/Extended/ColorModel.swift",
        "Utils/ImageSource/ImageProperties/Extended/EXIF+Extended.swift",
        "Utils/ImageSource/ImageProperties/Extended/GPS.swift",
        "Utils/ImageSource/ImageProperties/Extended/ImageProperties+Keys.swift",
        "Utils/ImageSource/ImageProperties/Extended/Nikon.swift",
        "Utils/ImageSource/ImageProperties/Extended/PNG+Extended.swift",
        "Utils/ImageSource/ImageProperties/Extended/TIFF+Extended.swift",
        "Utils/ImageSource/ImageProperties/GIFImageProperties.swift",
        "Utils/ImageSource/ImageProperties/HEICImageProperties.swift",
        "Utils/ImageSource/ImageProperties/IPTCImageProperties.swift",
        "Utils/ImageSource/ImageProperties/ImageProperties.swift",
        "Utils/ImageSource/ImageProperties/JPEGImageProperties.swift",
        "Utils/ImageSource/ImageProperties/PNGImageProperties.swift",
        "Utils/ImageSource/ImageProperties/TIFFImageProperties.swift",
        "Utils/ImageSource/ImageSource.swift",
        "Utils/KeyValueCodable.swift",
        "Utils/MeasureTime.swift",
        "Utils/MutableProgress.swift",
        "Utils/NotificationToken.swift",
        "Utils/OSHash.swift",
        "Utils/Operation/AsyncOperation.swift",
        "Utils/Operation/PausableOperationQueue.swift",
        "Utils/OutlineItem.swift",
        "Utils/Reachability.swift",
        "Utils/RuntimeError.swift",
        "Utils/Swizzle.swift",
        "Utils/Synchronized.swift",
        "Utils/Weak.swift"
      ],
      "target_dependencies" : [
        "_SuperBuilder"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.