The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of FZSwiftUtils, reference main (90a8c7), with Swift 6.0 for macOS (SPM) on 28 Jun 2025 01:10:52 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[156/287] Compiling FZSwiftUtils NotificationToken.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[157/287] Compiling FZSwiftUtils OSHash.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[158/287] Compiling FZSwiftUtils AsyncOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[159/287] Compiling FZSwiftUtils PausableOperationQueue.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[160/287] Compiling FZSwiftUtils OutlineItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[161/287] Compiling FZSwiftUtils Reachability.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[162/287] Compiling FZSwiftUtils RuntimeError.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[163/287] Compiling FZSwiftUtils Swizzle.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[164/287] Compiling FZSwiftUtils Synchronized.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[165/287] Compiling FZSwiftUtils ThroughputFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[166/287] Compiling FZSwiftUtils TryPrint.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[167/287] Compiling FZSwiftUtils Weak.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 |         let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 |         let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 |         let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
    |             `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 |         let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A progress that allows to add and remove children progresses.
 12 | open class MutableProgress: Progress {
    |            `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 |     var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 15 |  Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
 16 |  */
 17 | open class AsyncOperation: Operation, Pausable {
    |            `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
 18 |
 19 |     private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
    |            `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 |     /// The handler to execute.
204 |     public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 |     }
102 |
103 |     internal class BlockOperation: Operation {
    |                    `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 |         let block: ()->()
105 |         init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 23 |  Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
 24 |  */
 25 | open class PausableOperationQueue: OperationQueue {
    |            `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
 26 |     var allOperations: SynchronizedArray<Operation> = []
 27 |
[168/287] Compiling FZSwiftUtils SynchronizedArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[169/287] Compiling FZSwiftUtils SynchronizedDictionary.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[170/287] Compiling FZSwiftUtils DataSize.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[171/287] Compiling FZSwiftUtils FractionalPoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[172/287] Compiling FZSwiftUtils NSRectCorner.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[173/287] Compiling FZSwiftUtils Point3D.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[174/287] Compiling FZSwiftUtils RectEdge.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[175/287] Compiling FZSwiftUtils RectEdgeCorner.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[176/287] Compiling FZSwiftUtils Rotation.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[177/287] Compiling FZSwiftUtils RotationAngle.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[178/287] Compiling FZSwiftUtils Scale.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[179/287] Compiling FZSwiftUtils TimeDuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[180/287] Compiling FZSwiftUtils Defaults.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[181/287] Compiling FZSwiftUtils FSEvent+Actions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[182/287] Compiling FZSwiftUtils FSEvent+Flags.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[183/287] Compiling FZSwiftUtils FSEvent+ItemType.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[184/287] Compiling FZSwiftUtils FSEvent.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[185/287] Compiling FZSwiftUtils FSEventMonitor+Options.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[186/287] Compiling FZSwiftUtils FSEventMonitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[187/287] Compiling FZSwiftUtils FileConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[188/287] Compiling FZSwiftUtils CGImageFrame.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[189/287] Compiling FZSwiftUtils ImageFrameSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[190/287] Compiling FZSwiftUtils ImageSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[191/287] Compiling FZSwiftUtils ImageOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/DataSize.swift:57:16: warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 55 |      The default setting is `file`, which is the system specific value for file and storage sizes.
 56 |      */
 57 |     public var countStyle: CountStyle = .file
    |                `- warning: stored property 'countStyle' of 'Sendable'-conforming struct 'DataSize' has non-sendable type 'DataSize.CountStyle'; this is an error in the Swift 6 language mode
 58 |
 59 |     /// The size in bytes.
    :
124 |
125 |     /// Specifies display of file or storage byte counts.
126 |     public enum CountStyle: Int, Hashable, Codable {
    |                 `- note: consider making enum 'CountStyle' conform to the 'Sendable' protocol
127 |         /**
128 |          Specifies display of file byte counts.
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Defaults.swift:465:18: warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
463 |
464 | extension Defaults {
465 |     public class Key<Value>: _AnyKey {
    |                  `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 |         let defaultValueGetter: () -> Value
467 |
[192/287] Compiling FZSwiftUtils Bundle+.swift
[193/287] Compiling FZSwiftUtils CSSearchableItem+.swift
[194/287] Compiling FZSwiftUtils CVTimeStamp+.swift
[195/287] Compiling FZSwiftUtils Array+.swift
[196/287] Compiling FZSwiftUtils Collection+.swift
[197/287] Compiling FZSwiftUtils Collection+Advance.swift
[198/287] Compiling FZSwiftUtils Collection+Average.swift
[199/287] Compiling FZSwiftUtils Collection+Chunk.swift
[200/287] Compiling FZSwiftUtils Collection+Indexed.swift
[201/287] Compiling FZSwiftUtils Collection+LazySplit.swift
[202/287] Compiling FZSwiftUtils Collection+Random.swift
[203/287] Compiling FZSwiftUtils Collection+Sort.swift
[204/287] Compiling FZSwiftUtils CollectionDifference+.swift
[205/287] Compiling FZSwiftUtils Dictionary+.swift
[206/287] Compiling FZSwiftUtils Dictionary+Merge.swift
[207/287] Compiling FZSwiftUtils IndexPath+.swift
[208/287] Compiling FZSwiftUtils OptionSet+.swift
[209/287] Compiling FZSwiftUtils Sequence+.swift
[210/287] Compiling FZSwiftUtils Sequence+Collect.swift
[211/287] Compiling FZSwiftUtils Sequence+Concurrency.swift
[212/287] Compiling FZSwiftUtils Sequence+Difference.swift
[213/287] Compiling FZSwiftUtils Sequence+Flat.swift
[214/287] Compiling FZSwiftUtils Sequence+Identifable.swift
[215/287] Compiling FZSwiftUtils Sequence+Keypath.swift
[216/287] Compiling FZSwiftUtils Locale+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[217/287] Compiling FZSwiftUtils Locale+Currency.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[218/287] Compiling FZSwiftUtils Logger+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[219/287] Compiling FZSwiftUtils Accelerate+Operator.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[220/287] Compiling FZSwiftUtils ApproximateEquatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[221/287] Compiling FZSwiftUtils Bool+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[222/287] Compiling FZSwiftUtils CGPoint+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[223/287] Compiling FZSwiftUtils CGRect+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[224/287] Compiling FZSwiftUtils CGSize+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[225/287] Compiling FZSwiftUtils FloatingPoint+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[226/287] Compiling FZSwiftUtils FloatingPoint+Initializable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[227/287] Compiling FZSwiftUtils FloatingPoint+Rounding.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[228/287] Compiling FZSwiftUtils Int+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[229/287] Compiling FZSwiftUtils MultiplicativeArithmetic.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[230/287] Compiling FZSwiftUtils NSNumber+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[231/287] Compiling FZSwiftUtils NSRange+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[232/287] Compiling FZSwiftUtils NSValue+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[233/287] Compiling FZSwiftUtils Number+Interpolate.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[234/287] Compiling FZSwiftUtils Number+String.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[235/287] Compiling FZSwiftUtils NumberFormatter+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[236/287] Compiling FZSwiftUtils NumberFormatter+String.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[237/287] Compiling FZSwiftUtils Range+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[238/287] Compiling FZSwiftUtils TimeInterval+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[239/287] Compiling FZSwiftUtils Mirror+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
177 |     public func hash(into hasher: inout Hasher) {
178 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
     | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
     | `- note: add '@retroactive' to silence this warning
1052 |     public func hash(into hasher: inout Hasher) {
1053 |         hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
379 |     public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 |         lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
385 |     public func hash(into hasher: inout Hasher) {
386 |         hasher.combine(width)
[240/287] Compiling FZSwiftUtils FileManager+.swift
[241/287] Compiling FZSwiftUtils FileType.swift
[242/287] Compiling FZSwiftUtils NSMetadata+.swift
[243/287] Compiling FZSwiftUtils URL+.swift
[244/287] Compiling FZSwiftUtils URL+DuplicateFiles.swift
[245/287] Compiling FZSwiftUtils URL+ExtendedAttributes.swift
[246/287] Compiling FZSwiftUtils URL+File.swift
[247/287] Compiling FZSwiftUtils URL+Item.swift
[248/287] Compiling FZSwiftUtils URL+Iterate.swift
[249/287] Compiling FZSwiftUtils URL+ResourceValue.swift
[250/287] Compiling FZSwiftUtils URL+fileSystemItem.swift
[251/287] Compiling FZSwiftUtils URLResources.swift
[252/287] Compiling FZSwiftUtils UTType+.swift
[253/287] Compiling FZSwiftUtils ByteCountFormatter+.swift
[254/287] Compiling FZSwiftUtils MeasurementFormatter+.swift
[255/287] Compiling FZSwiftUtils UnitInformationStorage+.swift
[256/287] Compiling FZSwiftUtils Digest+.swift
[257/287] Compiling FZSwiftUtils HashFunction+.swift
[258/287] Compiling FZSwiftUtils Hasher+.swift
[259/287] Compiling FZSwiftUtils JSONSerialization+.swift
[260/287] Compiling FZSwiftUtils KeyValueObservation.swift
[261/287] Compiling FZSwiftUtils KeyValueObserver.swift
[262/287] Compiling FZSwiftUtils NSObject+Observe.swift
[263/287] Compiling FZSwiftUtils KeyPath+.swift
[264/287] Compiling FZSwiftUtils NSRegularExpression+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[265/287] Compiling FZSwiftUtils NSTextCheckingResult+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[266/287] Compiling FZSwiftUtils String+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[267/287] Compiling FZSwiftUtils String+HTML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[268/287] Compiling FZSwiftUtils String+Height.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[269/287] Compiling FZSwiftUtils String+Match.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[270/287] Compiling FZSwiftUtils String+Random.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[271/287] Compiling FZSwiftUtils XMLNode+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[272/287] Compiling FZSwiftUtils NSUI Typealias.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[273/287] Compiling FZSwiftUtils Operator.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[274/287] Compiling FZSwiftUtils CodableDefault.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[275/287] Compiling FZSwiftUtils DateValueCodable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[276/287] Compiling FZSwiftUtils PropertyWrappers.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[277/287] Compiling FZSwiftUtils ApplicationInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[278/287] Compiling FZSwiftUtils FileTypeDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[279/287] Compiling FZSwiftUtils AssociatedValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[280/287] Compiling FZSwiftUtils BaseArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[281/287] Compiling FZSwiftUtils BaseDictionary.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[282/287] Compiling FZSwiftUtils Deque.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[283/287] Compiling FZSwiftUtils OrderedDictionary.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[284/287] Compiling FZSwiftUtils OrderedSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[285/287] Compiling FZSwiftUtils Queue.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[286/287] Compiling FZSwiftUtils SelectableArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
[287/287] Compiling FZSwiftUtils Stack.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 |     }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
400 |     public var description: String {
401 |         switch self {
Build complete! (20.88s)
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" : "_OCSources",
      "module_type" : "ClangTarget",
      "name" : "_OCSources",
      "path" : "Sources/FZSwiftUtils+ObjC/OCSources",
      "product_memberships" : [
        "FZSwiftUtils"
      ],
      "sources" : [
        "SHFFITypeContext.m",
        "SHMethodSignature.m",
        "SHObjectiveCUtilities.m"
      ],
      "target_dependencies" : [
        "_Libffi"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_Libffi",
      "module_type" : "ClangTarget",
      "name" : "_Libffi",
      "path" : "Sources/FZSwiftUtils+ObjC/Libffi",
      "product_memberships" : [
        "FZSwiftUtils"
      ],
      "sources" : [
        "src/aarch64/ffi_arm64.c",
        "src/aarch64/sysv_arm64.S",
        "src/arm/ffi_armv7.c",
        "src/arm/sysv_armv7.S",
        "src/closures.c",
        "src/debug.c",
        "src/dlmalloc.c",
        "src/java_raw_api.c",
        "src/prep_cif.c",
        "src/raw_api.c",
        "src/tramp.c",
        "src/types.c",
        "src/x86/ffi64_x86_64.c",
        "src/x86/ffi_i386.c",
        "src/x86/ffiw64_x86_64.c",
        "src/x86/sysv_i386.S",
        "src/x86/unix64_x86_64.S",
        "src/x86/win64_x86_64.S"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_ExceptionCatcher",
      "module_type" : "ClangTarget",
      "name" : "_ExceptionCatcher",
      "path" : "Sources/FZSwiftUtils+ObjC/ExceptionCatcher",
      "product_memberships" : [
        "FZSwiftUtils"
      ],
      "sources" : [
        "NSObject+ExceptionCatcher.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FZSwiftUtils",
      "module_type" : "SwiftTarget",
      "name" : "FZSwiftUtils",
      "path" : "Sources/FZSwiftUtils",
      "product_memberships" : [
        "FZSwiftUtils"
      ],
      "sources" : [
        "Extensions/Bundle+.swift",
        "Extensions/CSSearchableItem+.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/Sequence+Zip.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/Date & Time/TimeZone.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+DuplicateFiles.swift",
        "Extensions/File & URL/URL+ExtendedAttributes.swift",
        "Extensions/File & URL/URL+File.swift",
        "Extensions/File & URL/URL+Item.swift",
        "Extensions/File & URL/URL+Iterate.swift",
        "Extensions/File & URL/URL+ResourceValue.swift",
        "Extensions/File & URL/URL+fileSystemItem.swift",
        "Extensions/File & URL/URLResources.swift",
        "Extensions/File & URL/UTType+.swift",
        "Extensions/Formatter/ByteCountFormatter+.swift",
        "Extensions/Formatter/MeasurementFormatter+.swift",
        "Extensions/Formatter/UnitInformationStorage+.swift",
        "Extensions/Hash/Digest+.swift",
        "Extensions/Hash/HashFunction+.swift",
        "Extensions/Hash/Hasher+.swift",
        "Extensions/JSONSerialization+.swift",
        "Extensions/KVO/KeyValueObservation.swift",
        "Extensions/KVO/KeyValueObserver.swift",
        "Extensions/KVO/NSObject+Observe.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/NSObject+.swift",
        "Extensions/NSObject/NSObject+Copy.swift",
        "Extensions/NSObject/NSObject+KeyPath.swift",
        "Extensions/NSObject/NSObject+Reflection.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/NSComparisonPredicate+.swift",
        "Extensions/Predicate/NSComparisonPredicate+Expression.swift",
        "Extensions/Predicate/NSExpression+.swift",
        "Extensions/Predicate/NSPredicate+.swift",
        "Extensions/Predicate/NSPredicate+Operator.swift",
        "Extensions/Predicate/Predicates.swift",
        "Extensions/ProcessInfo+.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/OptionSetDescribable.swift",
        "Extensions/Protocol/Optional+.swift",
        "Extensions/Protocol/SortComparator+.swift",
        "Extensions/Result+.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",
        "Extensions/XMLNode+.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/RotationAngle.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/MethodHooking/Hook/Hook+AddMethod.swift",
        "Utils/MethodHooking/Hook/Hook+Class.swift",
        "Utils/MethodHooking/Hook/Hook+Deinit.swift",
        "Utils/MethodHooking/Hook/Hook+Object.swift",
        "Utils/MethodHooking/Hook/Hook.swift",
        "Utils/MethodHooking/Hooker+NSObject/NSObject+AddMethod.swift",
        "Utils/MethodHooking/Hooker+NSObject/NSObject+ClassHook.swift",
        "Utils/MethodHooking/Hooker+NSObject/NSObject+ClassInstanceHook.swift",
        "Utils/MethodHooking/Hooker+NSObject/NSObject+Hook.swift",
        "Utils/MethodHooking/Hooker+NSObject/NSObject+Unhook.swift",
        "Utils/MethodHooking/Hooker/ClassHook.swift",
        "Utils/MethodHooking/Hooker/ClassInstanceHook.swift",
        "Utils/MethodHooking/Hooker/ObjectHook.swift",
        "Utils/MethodHooking/Implementation/AnyClass+GetMethod.swift",
        "Utils/MethodHooking/Implementation/AnyObject+DynamicClass.swift",
        "Utils/MethodHooking/Implementation/AnyObject+HookClosures.swift",
        "Utils/MethodHooking/Implementation/FFI/FFICIFContext.swift",
        "Utils/MethodHooking/Implementation/FFI/FFIClosureContext.swift",
        "Utils/MethodHooking/Implementation/HookCommon.swift",
        "Utils/MethodHooking/Implementation/HookContext.swift",
        "Utils/MethodHooking/Implementation/InsteadContext.swift",
        "Utils/MethodHooking/Implementation/Interpose/Interpose+AnyHook.swift",
        "Utils/MethodHooking/Implementation/Interpose/Interpose+ClassHook.swift",
        "Utils/MethodHooking/Implementation/Interpose/Interpose+Error.swift",
        "Utils/MethodHooking/Implementation/Interpose/Interpose+HookFinder.swift",
        "Utils/MethodHooking/Implementation/Interpose/Interpose+ObjectHook.swift",
        "Utils/MethodHooking/Implementation/Interpose/Interpose+Subclass.swift",
        "Utils/MethodHooking/Implementation/Interpose/Interpose.swift",
        "Utils/MethodHooking/Implementation/Interpose/NSObject+Interpose.swift",
        "Utils/MethodHooking/Implementation/KVOWrapper.swift",
        "Utils/MethodHooking/Implementation/NSObject+SelectorName.swift",
        "Utils/MethodHooking/Implementation/OverrideSuperMethodContext.swift",
        "Utils/MethodHooking/Implementation/ParametersCheck.swift",
        "Utils/MethodHooking/Implementation/Signature.swift",
        "Utils/MethodHooking/Implementation/_AnyClass.swift",
        "Utils/MethodHooking/Implementation/_AnyObject.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/ThroughputFormatter.swift",
        "Utils/TryPrint.swift",
        "Utils/Weak.swift"
      ],
      "target_dependencies" : [
        "_SuperBuilder",
        "_ExceptionCatcher",
        "_Libffi",
        "_OCSources"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.