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 1.1.8 (1cd580), with Swift 6.2 (beta) for macOS (SPM) on 21 Jun 2025 02:15:13 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[150/223] Compiling FZSwiftUtils Dictionary+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:30:28: warning: capture of non-sendable type 'Self.Type' in an isolated closure
28 |     func collect(completion: @escaping ([Element]) -> Void) {
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
   |                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
31 |             DispatchQueue.main.async {
32 |                 completion(elements)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:28:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |      - Parameter completion: The handler which gets called when all elements got collected.
27 |      */
28 |     func collect(completion: @escaping ([Element]) -> Void) {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:59:38: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
58 |         Task {
59 |             let elements = try await collect()
   |                                      `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             completion(elements)
61 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:57:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 |      - Parameter completion: The handler which gets called when all elements got collected.
56 |      */
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 |         Task {
59 |             let elements = try await collect()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:38:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     func concurrentForEach(
 37 |         withPriority priority: TaskPriority? = nil,
 38 |         _ operation: @escaping (Element) async -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) async {
 40 |         await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:64:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 62 |     func concurrentForEach(
 63 |         withPriority priority: TaskPriority? = nil,
 64 |         _ operation: @escaping (Element) async throws -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |     ) async throws {
 66 |         try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:121:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 |     func concurrentMap<T>(
120 |         withPriority priority: TaskPriority? = nil,
121 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 |     ) async -> [T] {
123 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:152:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |     func concurrentMap<T>(
151 |         withPriority priority: TaskPriority? = nil,
152 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |     ) async throws -> [T] {
154 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:216:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     func concurrentCompactMap<T>(
215 |         withPriority priority: TaskPriority? = nil,
216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[151/223] Compiling FZSwiftUtils Dictionary+Merge.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:30:28: warning: capture of non-sendable type 'Self.Type' in an isolated closure
28 |     func collect(completion: @escaping ([Element]) -> Void) {
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
   |                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
31 |             DispatchQueue.main.async {
32 |                 completion(elements)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:28:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |      - Parameter completion: The handler which gets called when all elements got collected.
27 |      */
28 |     func collect(completion: @escaping ([Element]) -> Void) {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:59:38: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
58 |         Task {
59 |             let elements = try await collect()
   |                                      `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             completion(elements)
61 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:57:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 |      - Parameter completion: The handler which gets called when all elements got collected.
56 |      */
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 |         Task {
59 |             let elements = try await collect()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:38:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     func concurrentForEach(
 37 |         withPriority priority: TaskPriority? = nil,
 38 |         _ operation: @escaping (Element) async -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) async {
 40 |         await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:64:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 62 |     func concurrentForEach(
 63 |         withPriority priority: TaskPriority? = nil,
 64 |         _ operation: @escaping (Element) async throws -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |     ) async throws {
 66 |         try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:121:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 |     func concurrentMap<T>(
120 |         withPriority priority: TaskPriority? = nil,
121 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 |     ) async -> [T] {
123 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:152:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |     func concurrentMap<T>(
151 |         withPriority priority: TaskPriority? = nil,
152 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |     ) async throws -> [T] {
154 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:216:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     func concurrentCompactMap<T>(
215 |         withPriority priority: TaskPriority? = nil,
216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[152/223] Compiling FZSwiftUtils IndexPath+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:30:28: warning: capture of non-sendable type 'Self.Type' in an isolated closure
28 |     func collect(completion: @escaping ([Element]) -> Void) {
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
   |                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
31 |             DispatchQueue.main.async {
32 |                 completion(elements)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:28:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |      - Parameter completion: The handler which gets called when all elements got collected.
27 |      */
28 |     func collect(completion: @escaping ([Element]) -> Void) {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:59:38: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
58 |         Task {
59 |             let elements = try await collect()
   |                                      `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             completion(elements)
61 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:57:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 |      - Parameter completion: The handler which gets called when all elements got collected.
56 |      */
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 |         Task {
59 |             let elements = try await collect()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:38:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     func concurrentForEach(
 37 |         withPriority priority: TaskPriority? = nil,
 38 |         _ operation: @escaping (Element) async -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) async {
 40 |         await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:64:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 62 |     func concurrentForEach(
 63 |         withPriority priority: TaskPriority? = nil,
 64 |         _ operation: @escaping (Element) async throws -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |     ) async throws {
 66 |         try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:121:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 |     func concurrentMap<T>(
120 |         withPriority priority: TaskPriority? = nil,
121 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 |     ) async -> [T] {
123 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:152:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |     func concurrentMap<T>(
151 |         withPriority priority: TaskPriority? = nil,
152 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |     ) async throws -> [T] {
154 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:216:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     func concurrentCompactMap<T>(
215 |         withPriority priority: TaskPriority? = nil,
216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[153/223] Compiling FZSwiftUtils OptionSet+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:30:28: warning: capture of non-sendable type 'Self.Type' in an isolated closure
28 |     func collect(completion: @escaping ([Element]) -> Void) {
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
   |                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
31 |             DispatchQueue.main.async {
32 |                 completion(elements)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:28:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |      - Parameter completion: The handler which gets called when all elements got collected.
27 |      */
28 |     func collect(completion: @escaping ([Element]) -> Void) {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:59:38: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
58 |         Task {
59 |             let elements = try await collect()
   |                                      `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             completion(elements)
61 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:57:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 |      - Parameter completion: The handler which gets called when all elements got collected.
56 |      */
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 |         Task {
59 |             let elements = try await collect()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:38:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     func concurrentForEach(
 37 |         withPriority priority: TaskPriority? = nil,
 38 |         _ operation: @escaping (Element) async -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) async {
 40 |         await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:64:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 62 |     func concurrentForEach(
 63 |         withPriority priority: TaskPriority? = nil,
 64 |         _ operation: @escaping (Element) async throws -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |     ) async throws {
 66 |         try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:121:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 |     func concurrentMap<T>(
120 |         withPriority priority: TaskPriority? = nil,
121 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 |     ) async -> [T] {
123 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:152:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |     func concurrentMap<T>(
151 |         withPriority priority: TaskPriority? = nil,
152 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |     ) async throws -> [T] {
154 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:216:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     func concurrentCompactMap<T>(
215 |         withPriority priority: TaskPriority? = nil,
216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[154/223] Compiling FZSwiftUtils Sequence+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:30:28: warning: capture of non-sendable type 'Self.Type' in an isolated closure
28 |     func collect(completion: @escaping ([Element]) -> Void) {
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
   |                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
31 |             DispatchQueue.main.async {
32 |                 completion(elements)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:28:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |      - Parameter completion: The handler which gets called when all elements got collected.
27 |      */
28 |     func collect(completion: @escaping ([Element]) -> Void) {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:59:38: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
58 |         Task {
59 |             let elements = try await collect()
   |                                      `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             completion(elements)
61 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:57:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 |      - Parameter completion: The handler which gets called when all elements got collected.
56 |      */
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 |         Task {
59 |             let elements = try await collect()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:38:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     func concurrentForEach(
 37 |         withPriority priority: TaskPriority? = nil,
 38 |         _ operation: @escaping (Element) async -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) async {
 40 |         await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:64:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 62 |     func concurrentForEach(
 63 |         withPriority priority: TaskPriority? = nil,
 64 |         _ operation: @escaping (Element) async throws -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |     ) async throws {
 66 |         try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:121:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 |     func concurrentMap<T>(
120 |         withPriority priority: TaskPriority? = nil,
121 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 |     ) async -> [T] {
123 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:152:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |     func concurrentMap<T>(
151 |         withPriority priority: TaskPriority? = nil,
152 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |     ) async throws -> [T] {
154 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:216:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     func concurrentCompactMap<T>(
215 |         withPriority priority: TaskPriority? = nil,
216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[155/223] Compiling FZSwiftUtils Sequence+Collect.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:30:28: warning: capture of non-sendable type 'Self.Type' in an isolated closure
28 |     func collect(completion: @escaping ([Element]) -> Void) {
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
   |                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
31 |             DispatchQueue.main.async {
32 |                 completion(elements)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:28:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |      - Parameter completion: The handler which gets called when all elements got collected.
27 |      */
28 |     func collect(completion: @escaping ([Element]) -> Void) {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:59:38: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
58 |         Task {
59 |             let elements = try await collect()
   |                                      `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             completion(elements)
61 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:57:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 |      - Parameter completion: The handler which gets called when all elements got collected.
56 |      */
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 |         Task {
59 |             let elements = try await collect()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:38:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     func concurrentForEach(
 37 |         withPriority priority: TaskPriority? = nil,
 38 |         _ operation: @escaping (Element) async -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) async {
 40 |         await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:64:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 62 |     func concurrentForEach(
 63 |         withPriority priority: TaskPriority? = nil,
 64 |         _ operation: @escaping (Element) async throws -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |     ) async throws {
 66 |         try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:121:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 |     func concurrentMap<T>(
120 |         withPriority priority: TaskPriority? = nil,
121 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 |     ) async -> [T] {
123 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:152:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |     func concurrentMap<T>(
151 |         withPriority priority: TaskPriority? = nil,
152 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |     ) async throws -> [T] {
154 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:216:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     func concurrentCompactMap<T>(
215 |         withPriority priority: TaskPriority? = nil,
216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[156/223] Compiling FZSwiftUtils Sequence+Concurrency.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:30:28: warning: capture of non-sendable type 'Self.Type' in an isolated closure
28 |     func collect(completion: @escaping ([Element]) -> Void) {
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
   |                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
31 |             DispatchQueue.main.async {
32 |                 completion(elements)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:28:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |      - Parameter completion: The handler which gets called when all elements got collected.
27 |      */
28 |     func collect(completion: @escaping ([Element]) -> Void) {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:59:38: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
58 |         Task {
59 |             let elements = try await collect()
   |                                      `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             completion(elements)
61 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:57:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 |      - Parameter completion: The handler which gets called when all elements got collected.
56 |      */
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 |         Task {
59 |             let elements = try await collect()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:38:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     func concurrentForEach(
 37 |         withPriority priority: TaskPriority? = nil,
 38 |         _ operation: @escaping (Element) async -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) async {
 40 |         await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:64:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 62 |     func concurrentForEach(
 63 |         withPriority priority: TaskPriority? = nil,
 64 |         _ operation: @escaping (Element) async throws -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |     ) async throws {
 66 |         try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:121:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 |     func concurrentMap<T>(
120 |         withPriority priority: TaskPriority? = nil,
121 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 |     ) async -> [T] {
123 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:152:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |     func concurrentMap<T>(
151 |         withPriority priority: TaskPriority? = nil,
152 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |     ) async throws -> [T] {
154 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:216:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     func concurrentCompactMap<T>(
215 |         withPriority priority: TaskPriority? = nil,
216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[157/223] Compiling FZSwiftUtils Sequence+Difference.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:30:28: warning: capture of non-sendable type 'Self.Type' in an isolated closure
28 |     func collect(completion: @escaping ([Element]) -> Void) {
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
   |                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
31 |             DispatchQueue.main.async {
32 |                 completion(elements)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:28:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |      - Parameter completion: The handler which gets called when all elements got collected.
27 |      */
28 |     func collect(completion: @escaping ([Element]) -> Void) {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:59:38: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
58 |         Task {
59 |             let elements = try await collect()
   |                                      `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             completion(elements)
61 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:57:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 |      - Parameter completion: The handler which gets called when all elements got collected.
56 |      */
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 |         Task {
59 |             let elements = try await collect()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:38:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     func concurrentForEach(
 37 |         withPriority priority: TaskPriority? = nil,
 38 |         _ operation: @escaping (Element) async -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) async {
 40 |         await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:64:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 62 |     func concurrentForEach(
 63 |         withPriority priority: TaskPriority? = nil,
 64 |         _ operation: @escaping (Element) async throws -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |     ) async throws {
 66 |         try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:121:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 |     func concurrentMap<T>(
120 |         withPriority priority: TaskPriority? = nil,
121 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 |     ) async -> [T] {
123 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:152:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |     func concurrentMap<T>(
151 |         withPriority priority: TaskPriority? = nil,
152 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |     ) async throws -> [T] {
154 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:216:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     func concurrentCompactMap<T>(
215 |         withPriority priority: TaskPriority? = nil,
216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[158/223] Compiling FZSwiftUtils Sequence+Flat.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:30:28: warning: capture of non-sendable type 'Self.Type' in an isolated closure
28 |     func collect(completion: @escaping ([Element]) -> Void) {
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
   |                            `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
31 |             DispatchQueue.main.async {
32 |                 completion(elements)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:28:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure
26 |      - Parameter completion: The handler which gets called when all elements got collected.
27 |      */
28 |     func collect(completion: @escaping ([Element]) -> Void) {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
29 |         DispatchQueue.global(qos: .userInitiated).async {
30 |             let elements = reduce(into: [Element]()) { $0.append($1) }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:59:38: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
58 |         Task {
59 |             let elements = try await collect()
   |                                      `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
60 |             completion(elements)
61 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Collect.swift:57:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
55 |      - Parameter completion: The handler which gets called when all elements got collected.
56 |      */
57 |     func collect(completion: @escaping ([Element]) -> Void) throws {
   |          `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
58 |         Task {
59 |             let elements = try await collect()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:38:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     func concurrentForEach(
 37 |         withPriority priority: TaskPriority? = nil,
 38 |         _ operation: @escaping (Element) async -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     ) async {
 40 |         await withTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:64:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 62 |     func concurrentForEach(
 63 |         withPriority priority: TaskPriority? = nil,
 64 |         _ operation: @escaping (Element) async throws -> Void
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |     ) async throws {
 66 |         try await withThrowingTaskGroup(of: Void.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:121:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 |     func concurrentMap<T>(
120 |         withPriority priority: TaskPriority? = nil,
121 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 |     ) async -> [T] {
123 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:152:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
150 |     func concurrentMap<T>(
151 |         withPriority priority: TaskPriority? = nil,
152 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |     ) async throws -> [T] {
154 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:216:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
214 |     func concurrentCompactMap<T>(
215 |         withPriority priority: TaskPriority? = nil,
216 |         _ transform: @escaping (Element) async -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
217 |     ) async -> [T] {
218 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:249:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |     func concurrentCompactMap<T>(
248 |         withPriority priority: TaskPriority? = nil,
249 |         _ transform: @escaping (Element) async throws -> T?
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
250 |     ) async throws -> [T] {
251 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:315:17: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
313 |         let tasks = map { element in
314 |             Task(priority: priority) {
315 |                 await transform(element)
    |                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
316 |             }
317 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:311:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |     func concurrentFlatMap<T: Sequence>(
310 |         withPriority priority: TaskPriority? = nil,
311 |         _ transform: @escaping (Element) async -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |     ) async -> [T.Element] {
313 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:349:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
347 |         let tasks = map { element in
348 |             Task(priority: priority) {
349 |                 try await transform(element)
    |                     `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
350 |             }
351 |         }
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Concurrency.swift:345:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |     func concurrentFlatMap<T: Sequence>(
344 |         withPriority priority: TaskPriority? = nil,
345 |         _ transform: @escaping (Element) async throws -> T
    |           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |     ) async throws -> [T.Element] {
347 |         let tasks = map { element in
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Sequence+Difference.swift:88:13: warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 86 |      */
 87 |     func differenceIndexed<C: Collection<Element>>(to other: C) -> (removed: [Element], added: [Element], changed: [Element], unchanged: [Element]) where C.Index: BinaryInteger {
 88 |         let otherSet = Set(other)
    |             `- warning: initialization of immutable value 'otherSet' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 89 |         let indexMap = Dictionary(uniqueKeysWithValues: other.enumerated().map { ($1, $0) })
 90 |
[159/223] Compiling FZSwiftUtils Enum+Name.swift
[160/223] Compiling FZSwiftUtils FileAttributes.swift
[161/223] Compiling FZSwiftUtils FileManager+.swift
[162/223] Compiling FZSwiftUtils FileType.swift
[163/223] Compiling FZSwiftUtils NSMetadata+.swift
[164/223] Compiling FZSwiftUtils URL+.swift
[165/223] Compiling FZSwiftUtils URL+DirectoryEnumerator.swift
[166/223] Compiling FZSwiftUtils URL+ExtendedAttributes.swift
[167/223] Compiling FZSwiftUtils URL+File.swift
[168/223] Compiling FZSwiftUtils URL+Item.swift
[169/223] Compiling FZSwiftUtils URL+ResourceValue.swift
[170/223] Compiling FZSwiftUtils URL+fileSystemItem.swift
[171/223] Compiling FZSwiftUtils URLResources.swift
[172/223] Compiling FZSwiftUtils UTType+.swift
[173/223] Compiling FZSwiftUtils Digest+.swift
[174/223] Compiling FZSwiftUtils HashFunction+.swift
[175/223] Compiling FZSwiftUtils Hasher+.swift
[176/223] Compiling FZSwiftUtils KeyPath+.swift
[177/223] Compiling FZSwiftUtils Locale+.swift
[178/223] Compiling FZSwiftUtils Locale+Currency.swift
[179/223] Compiling FZSwiftUtils Logger+.swift
[180/223] Compiling FZSwiftUtils Accelerate+Operator.swift
[181/223] Compiling FZSwiftUtils GIFImageProperties.swift
/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 |
[182/223] Compiling FZSwiftUtils HEICImageProperties.swift
/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 |
[183/223] Compiling FZSwiftUtils IPTCImageProperties.swift
/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 |
[184/223] Compiling FZSwiftUtils ImageProperties.swift
/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 |
[185/223] Compiling FZSwiftUtils JPEGImageProperties.swift
/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 |
[186/223] Compiling FZSwiftUtils PNGImageProperties.swift
/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 |
[187/223] Compiling FZSwiftUtils TIFFImageProperties.swift
/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 |
[188/223] Compiling FZSwiftUtils ImageSource.swift
/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 |
[189/223] Compiling FZSwiftUtils KeyValueCodable.swift
/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 |
[190/223] Compiling FZSwiftUtils MeasureTime.swift
/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 |
[191/223] Compiling FZSwiftUtils MutableProgress.swift
/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 |
[192/223] Compiling FZSwiftUtils NotificationToken.swift
/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 |
[193/223] Compiling FZSwiftUtils OSHash.swift
/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 |
[194/223] Compiling FZSwiftUtils AsyncOperation.swift
/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 |
[195/223] Compiling FZSwiftUtils PausableOperationQueue.swift
/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 |
[196/223] Compiling FZSwiftUtils OutlineItem.swift
/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 |
[197/223] Compiling FZSwiftUtils Reachability.swift
/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 |
[198/223] Compiling FZSwiftUtils RuntimeError.swift
/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 |
[199/223] Compiling FZSwiftUtils Swizzle.swift
/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 |
[200/223] Compiling FZSwiftUtils Synchronized.swift
/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 |
[201/223] Compiling FZSwiftUtils Weak.swift
/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 |
[202/223] Compiling FZSwiftUtils Comparable+Clamp.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[203/223] Compiling FZSwiftUtils Decodable+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[204/223] Compiling FZSwiftUtils Equatable+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[205/223] Compiling FZSwiftUtils Optional+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[206/223] Compiling FZSwiftUtils SortComparator+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[207/223] Compiling FZSwiftUtils Selector+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[208/223] Compiling FZSwiftUtils AttributedString+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[209/223] Compiling FZSwiftUtils Character+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[210/223] Compiling FZSwiftUtils CharacterSet+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[211/223] Compiling FZSwiftUtils NSAttributedString+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[212/223] Compiling FZSwiftUtils NSRegularExpression+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[213/223] Compiling FZSwiftUtils NSTextCheckingResult+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[214/223] Compiling FZSwiftUtils String+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[215/223] Compiling FZSwiftUtils String+HTML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[216/223] Compiling FZSwiftUtils String+Height.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[217/223] Compiling FZSwiftUtils String+Match.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[218/223] Compiling FZSwiftUtils String+Random.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[219/223] Compiling FZSwiftUtils NSUI Typealias.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[220/223] Compiling FZSwiftUtils Operator.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[221/223] Compiling FZSwiftUtils CodableDefault.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[222/223] Compiling FZSwiftUtils DateValueCodable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
[223/223] Compiling FZSwiftUtils PropertyWrappers.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 867 |         public var fileTypeIdentifier: String?
 868 |
 869 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 870 |         public var fileType: UTType? {
 871 |             get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:19: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 958 |         public var fileTypeIdentifier: String?
 959 |
 960 |         @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
     |                   `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 961 |         public var fileType: UTType? {
 962 |             get {
Build complete! (17.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" : "FZSwiftUtils",
      "module_type" : "SwiftTarget",
      "name" : "FZSwiftUtils",
      "path" : "Sources/FZSwiftUtils",
      "product_memberships" : [
        "FZSwiftUtils"
      ],
      "sources" : [
        "Extensions/Bundle+.swift",
        "Extensions/ByteCountFormatter+.swift",
        "Extensions/CVTimeStamp+.swift",
        "Extensions/Collections/Array+.swift",
        "Extensions/Collections/Collection+.swift",
        "Extensions/Collections/Collection+Advance.swift",
        "Extensions/Collections/Collection+Average.swift",
        "Extensions/Collections/Collection+Chunk.swift",
        "Extensions/Collections/Collection+Indexed.swift",
        "Extensions/Collections/Collection+LazySplit.swift",
        "Extensions/Collections/Collection+Random.swift",
        "Extensions/Collections/Collection+Sort.swift",
        "Extensions/Collections/CollectionDifference+.swift",
        "Extensions/Collections/Dictionary+.swift",
        "Extensions/Collections/Dictionary+Merge.swift",
        "Extensions/Collections/IndexPath+.swift",
        "Extensions/Collections/OptionSet+.swift",
        "Extensions/Collections/Sequence+.swift",
        "Extensions/Collections/Sequence+Collect.swift",
        "Extensions/Collections/Sequence+Concurrency.swift",
        "Extensions/Collections/Sequence+Difference.swift",
        "Extensions/Collections/Sequence+Flat.swift",
        "Extensions/Collections/Sequence+Identifable.swift",
        "Extensions/Collections/Sequence+Keypath.swift",
        "Extensions/Collections/Sequence+Occurency.swift",
        "Extensions/Collections/Sequence+Sort.swift",
        "Extensions/Collections/Sequence+String.swift",
        "Extensions/Collections/Sequence+Unique.swift",
        "Extensions/Collections/Set+.swift",
        "Extensions/Date & Time/Calendar+.swift",
        "Extensions/Date & Time/Date+.swift",
        "Extensions/Date & Time/Formatter/DateComponentsFormatter+.swift",
        "Extensions/Date & Time/Formatter/DateFormatter+.swift",
        "Extensions/Date & Time/Formatter/DateFormatter+Components.swift",
        "Extensions/Date & Time/Formatter/DateIntervalFormatter+.swift",
        "Extensions/Date & Time/Formatter/RelativeDateTimeFormatter+.swift",
        "Extensions/Date & Time/NSCalendar+.swift",
        "Extensions/DispatchQueue+.swift",
        "Extensions/DispatchWorkItem+.swift",
        "Extensions/Encoding & Decoding/Collection+Decode.swift",
        "Extensions/Encoding & Decoding/Dictionary+Codable.swift",
        "Extensions/Encoding & Decoding/JSONEncoderDecoder+.swift",
        "Extensions/Encoding & Decoding/JSONEncoderDecoder+Codable.swift",
        "Extensions/Enum/Enum+Displayable.swift",
        "Extensions/Enum/Enum+Name.swift",
        "Extensions/File & URL/FileAttributes.swift",
        "Extensions/File & URL/FileManager+.swift",
        "Extensions/File & URL/FileType.swift",
        "Extensions/File & URL/NSMetadata+.swift",
        "Extensions/File & URL/URL+.swift",
        "Extensions/File & URL/URL+DirectoryEnumerator.swift",
        "Extensions/File & URL/URL+ExtendedAttributes.swift",
        "Extensions/File & URL/URL+File.swift",
        "Extensions/File & URL/URL+Item.swift",
        "Extensions/File & URL/URL+ResourceValue.swift",
        "Extensions/File & URL/URL+fileSystemItem.swift",
        "Extensions/File & URL/URLResources.swift",
        "Extensions/File & URL/UTType+.swift",
        "Extensions/Hash/Digest+.swift",
        "Extensions/Hash/HashFunction+.swift",
        "Extensions/Hash/Hasher+.swift",
        "Extensions/KeyPath+.swift",
        "Extensions/Locale+.swift",
        "Extensions/Locale+Currency.swift",
        "Extensions/Logger+.swift",
        "Extensions/Math & Geometry/Accelerate+Operator.swift",
        "Extensions/Math & Geometry/ApproximateEquatable.swift",
        "Extensions/Math & Geometry/Bool+.swift",
        "Extensions/Math & Geometry/CGPoint+.swift",
        "Extensions/Math & Geometry/CGRect+.swift",
        "Extensions/Math & Geometry/CGSize+.swift",
        "Extensions/Math & Geometry/FloatingPoint+.swift",
        "Extensions/Math & Geometry/FloatingPoint+Initializable.swift",
        "Extensions/Math & Geometry/FloatingPoint+Rounding.swift",
        "Extensions/Math & Geometry/Int+.swift",
        "Extensions/Math & Geometry/MultiplicativeArithmetic.swift",
        "Extensions/Math & Geometry/NSNumber+.swift",
        "Extensions/Math & Geometry/NSRange+.swift",
        "Extensions/Math & Geometry/NSValue+.swift",
        "Extensions/Math & Geometry/Number+Interpolate.swift",
        "Extensions/Math & Geometry/Number+String.swift",
        "Extensions/Math & Geometry/NumberFormatter+.swift",
        "Extensions/Math & Geometry/NumberFormatter+String.swift",
        "Extensions/Math & Geometry/Range+.swift",
        "Extensions/Math & Geometry/TimeInterval+.swift",
        "Extensions/Mirror+.swift",
        "Extensions/NSCoder+.swift",
        "Extensions/NSError+.swift",
        "Extensions/NSKeyedUnarchiver+.swift",
        "Extensions/NSObject/Interpose/Interpose+AnyHook.swift",
        "Extensions/NSObject/Interpose/Interpose+ClassHook.swift",
        "Extensions/NSObject/Interpose/Interpose+Error.swift",
        "Extensions/NSObject/Interpose/Interpose+HookFinder.swift",
        "Extensions/NSObject/Interpose/Interpose+ObjectHook+Optional.swift",
        "Extensions/NSObject/Interpose/Interpose+ObjectHook.swift",
        "Extensions/NSObject/Interpose/Interpose+Subclass.swift",
        "Extensions/NSObject/Interpose/Interpose.swift",
        "Extensions/NSObject/KVO/KVObserver.swift",
        "Extensions/NSObject/KVO/KeyValueObservation.swift",
        "Extensions/NSObject/KVO/KeyValueObserver.swift",
        "Extensions/NSObject/NSObject+.swift",
        "Extensions/NSObject/NSObject+KeyPath.swift",
        "Extensions/NSObject/NSObject+Observe.swift",
        "Extensions/NSObject/NSObject+Reflection.swift",
        "Extensions/NSObject/NSObject+Swizzle.swift",
        "Extensions/NSRectEdge+.swift",
        "Extensions/NSRunningApplication+.swift",
        "Extensions/NSUIRectEdge+.swift",
        "Extensions/NSWorkspace+.swift",
        "Extensions/Networking/HTTPCookieStorage+.swift",
        "Extensions/Networking/HTTPURLResponse+.swift",
        "Extensions/Networking/URL+Redirect.swift",
        "Extensions/Networking/URLComponents+.swift",
        "Extensions/Networking/URLRequest+.swift",
        "Extensions/Networking/URLResponse+.swift",
        "Extensions/Networking/URLSession+.swift",
        "Extensions/Networking/URLSession+Sync.swift",
        "Extensions/Networking/URLSessionConfiguration+.swift",
        "Extensions/Networking/URLSessionDataTask+Resume.swift",
        "Extensions/Networking/URLSessionTask+.swift",
        "Extensions/Notification+.swift",
        "Extensions/Operation+.swift",
        "Extensions/OperationQueue+.swift",
        "Extensions/Predicate/NSExpression+.swift",
        "Extensions/Predicate/NSPredicate+.swift",
        "Extensions/Predicate/NSPredicate+ComparisonExpression.swift",
        "Extensions/Predicate/NSPredicate+Operator.swift",
        "Extensions/Predicate/Predicates.swift",
        "Extensions/Progress+.swift",
        "Extensions/Protocol/CFType.swift",
        "Extensions/Protocol/CaseIterable+.swift",
        "Extensions/Protocol/Comparable+.swift",
        "Extensions/Protocol/Comparable+Clamp.swift",
        "Extensions/Protocol/Decodable+.swift",
        "Extensions/Protocol/Equatable+.swift",
        "Extensions/Protocol/Optional+.swift",
        "Extensions/Protocol/SortComparator+.swift",
        "Extensions/Selector+.swift",
        "Extensions/String/AttributedString+.swift",
        "Extensions/String/Character+.swift",
        "Extensions/String/CharacterSet+.swift",
        "Extensions/String/NSAttributedString+.swift",
        "Extensions/String/NSRegularExpression+.swift",
        "Extensions/String/NSTextCheckingResult+.swift",
        "Extensions/String/String+.swift",
        "Extensions/String/String+HTML.swift",
        "Extensions/String/String+Height.swift",
        "Extensions/String/String+Match.swift",
        "Extensions/String/String+Random.swift",
        "NSUI Typealias.swift",
        "Operator.swift",
        "PropertyWrappers/CodableDefault.swift",
        "PropertyWrappers/DateValueCodable.swift",
        "PropertyWrappers/PropertyWrappers.swift",
        "Utils/ApplicationBundle/ApplicationInfo.swift",
        "Utils/ApplicationBundle/FileTypeDefinition.swift",
        "Utils/AssociatedValue.swift",
        "Utils/Collections/BaseArray.swift",
        "Utils/Collections/BaseDictionary.swift",
        "Utils/Collections/Deque.swift",
        "Utils/Collections/OrderedDictionary.swift",
        "Utils/Collections/OrderedSet.swift",
        "Utils/Collections/Queue.swift",
        "Utils/Collections/SelectableArray.swift",
        "Utils/Collections/Stack.swift",
        "Utils/Collections/SynchronizedArray.swift",
        "Utils/Collections/SynchronizedDictionary.swift",
        "Utils/Datatypes/DataSize.swift",
        "Utils/Datatypes/FractionalPoint.swift",
        "Utils/Datatypes/NSRectCorner.swift",
        "Utils/Datatypes/Point3D.swift",
        "Utils/Datatypes/RectEdge.swift",
        "Utils/Datatypes/RectEdgeCorner.swift",
        "Utils/Datatypes/Rotation.swift",
        "Utils/Datatypes/Scale.swift",
        "Utils/Datatypes/TimeDuration.swift",
        "Utils/Defaults.swift",
        "Utils/FSEventMonitor/FSEvent+Actions.swift",
        "Utils/FSEventMonitor/FSEvent+Flags.swift",
        "Utils/FSEventMonitor/FSEvent+ItemType.swift",
        "Utils/FSEventMonitor/FSEvent.swift",
        "Utils/FSEventMonitor/FSEventMonitor+Options.swift",
        "Utils/FSEventMonitor/FSEventMonitor.swift",
        "Utils/FileConvertible.swift",
        "Utils/ImageSource/AsymcSequence/CGImageFrame.swift",
        "Utils/ImageSource/AsymcSequence/ImageFrameSequence.swift",
        "Utils/ImageSource/AsymcSequence/ImageSequence.swift",
        "Utils/ImageSource/ImageOptions.swift",
        "Utils/ImageSource/ImageProperties/EXIF+HumanReadable.swift",
        "Utils/ImageSource/ImageProperties/EXIFImageProperties.swift",
        "Utils/ImageSource/ImageProperties/Extended/Canon.swift",
        "Utils/ImageSource/ImageProperties/Extended/ColorModel.swift",
        "Utils/ImageSource/ImageProperties/Extended/EXIF+Extended.swift",
        "Utils/ImageSource/ImageProperties/Extended/GPS.swift",
        "Utils/ImageSource/ImageProperties/Extended/ImageProperties+Keys.swift",
        "Utils/ImageSource/ImageProperties/Extended/Nikon.swift",
        "Utils/ImageSource/ImageProperties/Extended/PNG+Extended.swift",
        "Utils/ImageSource/ImageProperties/Extended/TIFF+Extended.swift",
        "Utils/ImageSource/ImageProperties/GIFImageProperties.swift",
        "Utils/ImageSource/ImageProperties/HEICImageProperties.swift",
        "Utils/ImageSource/ImageProperties/IPTCImageProperties.swift",
        "Utils/ImageSource/ImageProperties/ImageProperties.swift",
        "Utils/ImageSource/ImageProperties/JPEGImageProperties.swift",
        "Utils/ImageSource/ImageProperties/PNGImageProperties.swift",
        "Utils/ImageSource/ImageProperties/TIFFImageProperties.swift",
        "Utils/ImageSource/ImageSource.swift",
        "Utils/KeyValueCodable.swift",
        "Utils/MeasureTime.swift",
        "Utils/MutableProgress.swift",
        "Utils/NotificationToken.swift",
        "Utils/OSHash.swift",
        "Utils/Operation/AsyncOperation.swift",
        "Utils/Operation/PausableOperationQueue.swift",
        "Utils/OutlineItem.swift",
        "Utils/Reachability.swift",
        "Utils/RuntimeError.swift",
        "Utils/Swizzle.swift",
        "Utils/Synchronized.swift",
        "Utils/Weak.swift"
      ],
      "target_dependencies" : [
        "_SuperBuilder"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.