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 Stem, reference 2.1.0 (fe88a2), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 17:20:44 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

108 |     }
109 |
110 |     private func subscribe(queue: OperationQueue? = nil, using block: @escaping (Parsable) -> Void) -> NoticeToken {
    |                                                                `- warning: capture of non-sendable type 'Parsable.Type' in an isolated closure
111 |         let token = NoticeToken(name: key)
112 |         token.objectProtocol = NotificationCenter.default.addObserver(forName: key, object: nil, queue: queue) { note in
[47/150] Compiling Stem Date.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[48/150] Compiling Stem Timer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[49/150] Compiling Stem DispatchQueue.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[50/150] Compiling Stem ByteCountFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[51/150] Compiling Stem NumberFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[52/150] Compiling Stem NSItemProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[53/150] Compiling Stem CharacterSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[54/150] Compiling Stem StringProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[55/150] Compiling Stem Then.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[56/150] Compiling Stem Array.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[57/150] Compiling Stem CollectionConcurrencyKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[58/150] Compiling Stem Dictionary.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[59/150] Compiling Stem IndexPath.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[60/150] Compiling Stem STCountedSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[61/150] Compiling Stem Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:75:20: warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
75 |                    continuation.resume(throwing: error)
   |                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
76 |                } else {
77 |                    continuation.resume(returning: reading)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift:72:52: warning: capture of non-sendable type 'T.Type' in an isolated closure
70 |
71 |     func loadObject<T>(ofClass: T.Type) async throws -> T? where T : _ObjectiveCBridgeable, T._ObjectiveCType : NSItemProviderReading {
72 |        try await withCheckedThrowingContinuation { continuation in
   |                                                    `- warning: capture of non-sendable type 'T.Type' in an isolated closure
73 |           _ = base.loadObject(ofClass: ofClass) { reading, error in
74 |                if let error {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.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/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:120:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |     func concurrentMap<T>(
119 |         withPriority priority: TaskPriority? = nil,
120 |         _ 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
121 |     ) async -> [T] {
122 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:158:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |     func concurrentMap<T>(
157 |         withPriority priority: TaskPriority? = nil,
158 |         _ 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
159 |     ) async throws -> [T] {
160 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:228:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     func concurrentCompactMap<T>(
227 |         withPriority priority: TaskPriority? = nil,
228 |         _ 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
229 |     ) async -> [T] {
230 |         return await withTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:268:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
266 |     func concurrentCompactMap<T>(
267 |         withPriority priority: TaskPriority? = nil,
268 |         _ 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
269 |     ) async throws -> [T] {
270 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T?).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:345:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
343 |
344 |                 group.addTask(priority: priority) {
345 |                     return await (idx, transform(element))
    |                            `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
346 |                 }
347 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:337:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
335 |     func concurrentFlatMap<T: Sequence>(
336 |         withPriority priority: TaskPriority? = nil,
337 |         _ 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
338 |     ) async -> [T.Element] {
339 |         return await withTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:386:32: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
384 |
385 |                 group.addTask(priority: priority) {
386 |                     return try await (idx, transform(element))
    |                                `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
387 |                 }
388 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift:378:11: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
376 |     func concurrentFlatMap<T: Sequence>(
377 |         withPriority priority: TaskPriority? = nil,
378 |         _ 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
379 |     ) async throws -> [T.Element] {
380 |         return try await withThrowingTaskGroup(of: (offset: Int, value: T).self) { group in
[62/150] Compiling Stem NoticeToken.swift
[63/150] Compiling Stem NoticeType.swift
[64/150] Compiling Stem STLRUCache.swift
[65/150] Compiling Stem UserDefaults.swift
[66/150] Compiling Stem STVersion.swift
[67/150] Compiling Stem Version+StringLiteralConvertible.swift
[68/150] Compiling Stem LocationTransformer.swift
[69/150] Compiling Stem StemArrayResultBuilder.swift
[70/150] Compiling Stem StemError.swift
[71/150] Compiling Stem StemFont.swift
[72/150] Compiling Stem StemShell.swift
[73/150] Compiling Stem StringMarker.swift
[74/150] Compiling Stem StringRender+Marker.swift
[75/150] Compiling Stem StringRender.swift
[76/150] Compiling Stem Coder.swift
[77/150] Emitting module Stem
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/Fundamentals/URL/URL.swift:48:1: warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
46 |
47 | // MARK: - ExpressibleByStringLiteral
48 | extension URL: ExpressibleByStringLiteral {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
49 |
50 |     public init(stringLiteral value: String) {
[78/150] Compiling Stem Stem.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[79/150] Compiling Stem AVAsset.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[80/150] Compiling Stem AudioFileService.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[81/150] Compiling Stem CoreAudioTypes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[82/150] Compiling Stem STAudioPlayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[83/150] Compiling Stem STAudioQueueService.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[84/150] Compiling Stem STAudioRecorder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[85/150] Compiling Stem STAVMetadataObjectKind.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[86/150] Compiling Stem STMetadataFaceObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[87/150] Compiling Stem STMetadataMachineReadableCodeObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[88/150] Compiling Stem STMetadataObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[89/150] Compiling Stem UIDevice+AVFoundation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[90/150] Compiling Stem UIImage+video.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[91/150] Compiling Stem Color+darkMode.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[92/150] Compiling Stem STWrapperColor+typealias.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/STAudioRecorder.swift:26:12: warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 24 | import AVFoundation
 25 |
 26 | open class STAudioRecorder: AVAudioRecorder {
    |            `- warning: class 'STAudioRecorder' must restate inherited '@unchecked Sendable' conformance
 27 |
 28 |     public struct Format {
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:117:67: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
115 |         var property = property
116 |         var (size, _) = try self.propertyInfo(property.id)
117 |         let status = AudioFileGetProperty(fd, property.id, &size, &property.value)
    |                                                                   `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
118 |         if status != noErr {
119 |             throw error(status: status)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/CrossPlatform/AVKit/AudioFileService.swift:127:66: warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
125 |         var property = property
126 |         let (size, _) = try self.propertyInfo(property.id)
127 |         let status = AudioFileSetProperty(fd, property.id, size, &property.value)
    |                                                                  `- warning: forming 'UnsafeRawPointer' to a variable of type 'Optional<OutputType>'; this is likely incorrect because 'Optional<OutputType>' may contain an object reference.
128 |         if status != noErr {
129 |             throw error(status: status)
[93/150] Compiling Stem Data+MimeType.swift
[94/150] Compiling Stem Data+crypto.swift
[95/150] Compiling Stem Data.swift
[96/150] Compiling Stem CGFloat.swift
[97/150] Compiling Stem CGPoint.swift
[98/150] Compiling Stem CGRect.swift
[99/150] Compiling Stem CGSize.swift
[100/150] Compiling Stem CGVector.swift
[101/150] Compiling Stem Bool.swift
[102/150] Compiling Stem Decimal.swift
[103/150] Compiling Stem Double.swift
[104/150] Compiling Stem Character.swift
[105/150] Compiling Stem String+Emoji.swift
[106/150] Compiling Stem String+Header.swift
[107/150] Compiling Stem String+Map.swift
[108/150] Compiling Stem StemSVG.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[109/150] Compiling Stem UIImage+Color.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[110/150] Compiling Stem UIImage+CoreImage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[111/150] Compiling Stem UIImage+Edit.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[112/150] Compiling Stem UIImage+Format.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[113/150] Compiling Stem UIImage+info.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[114/150] Compiling Stem UIImage+size.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[115/150] Compiling Stem UImage+other.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[116/150] Compiling Stem UIImageView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[117/150] Compiling Stem UISearchBar.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[118/150] Compiling Stem UITextField.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[119/150] Compiling Stem UITextView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[120/150] Compiling Stem UINib.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[121/150] Compiling Stem UIStoryboard.swift
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:59:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 57 |         if let ImageRep = (Self.SVGImageRep as AnyObject as? NSObjectProtocol),
 58 |            let rep = ImageRep
 59 |             .perform(.init("alloc"))
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
/Users/admin/builder/spi-builder-workspace/Sources/Stem/UIKit/Image/SVG/StemSVG.swift:61:28: warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 59 |             .perform(.init("alloc"))
 60 |             .takeRetainedValue()
 61 |             .perform(.init("initWithData:"), with: data)
    |                            `- warning: use of string literal for Objective-C selectors is deprecated; use '#selector' instead [#deprecation]
 62 |             .takeUnretainedValue() as? NSImageRep {
 63 |             self.imageRep = rep
[122/150] Compiling Stem AttributedString.swift
[123/150] Compiling Stem MutableAttributedString.swift
[124/150] Compiling Stem UIButton.swift
[125/150] Compiling Stem UIControl.swift
[126/150] Compiling Stem STGestureRecognizer.swift
[127/150] Compiling Stem TapticEngine.swift
[128/150] Compiling Stem UIFont.swift
[129/150] Compiling Stem UIGestureRecognizer+State.swift
[130/150] Compiling Stem CGImage.swift
[131/150] Compiling Stem CIFilter+Generator.swift
[132/150] Compiling Stem CIFilter+enum.swift
[133/150] Compiling Stem CIFilter+protocol.swift
[134/150] Compiling Stem NSImage+Data.swift
[135/150] Compiling Stem NSImage+Resize.swift
[136/150] Compiling Stem RunTime.swift
[137/150] Compiling Stem SFSymbol+Image.swift
[138/150] Compiling Stem SFSymbol+NSImage.swift
[139/150] Compiling Stem SFSymbol+UIImage.swift
[140/150] Compiling Stem SFSymbol.swift
[141/150] Compiling Stem STImage.swift
[142/150] Compiling Stem STLyric.swift
[143/150] Compiling Stem STLazyView.swift
[144/150] Compiling Stem UNUserNotificationCenter.swift
[145/150] Compiling Stem HybridCookieStorage.swift
[146/150] Compiling Stem WebKit+WKWebView.swift
[147/150] Compiling Stem RecoverNavigationProtocol.swift
[148/150] Compiling Stem UIApplication.swift
[149/150] Compiling Stem UIWindow.swift
[150/150] Compiling Stem AttributedString+Attribute.swift
Build complete! (10.05s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Stem",
  "name" : "Stem",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Stem",
      "targets" : [
        "Stem"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "StemTests",
      "module_type" : "SwiftTarget",
      "name" : "StemTests",
      "path" : "Tests/StemTests",
      "sources" : [
        "AttributedString+HTML.swift",
        "LyricTests.swift",
        "MimeType/CGFloatExtensionTests.swift",
        "MimeType/MimeTypeTest.swift",
        "MimeType/StringExtensionTests.swift",
        "MimeType/Tests.swift",
        "Test-Combine.swift",
        "XMLTest.swift"
      ],
      "target_dependencies" : [
        "Stem"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Stem",
      "module_type" : "SwiftTarget",
      "name" : "Stem",
      "path" : "Sources/Stem",
      "product_memberships" : [
        "Stem"
      ],
      "sources" : [
        "Core/Stem.swift",
        "CrossPlatform/AVKit/AVAsset.swift",
        "CrossPlatform/AVKit/AudioFileService.swift",
        "CrossPlatform/AVKit/CoreAudioTypes.swift",
        "CrossPlatform/AVKit/STAudioPlayer.swift",
        "CrossPlatform/AVKit/STAudioQueueService.swift",
        "CrossPlatform/AVKit/STAudioRecorder.swift",
        "CrossPlatform/AVKit/STMetadataObject/STAVMetadataObjectKind.swift",
        "CrossPlatform/AVKit/STMetadataObject/STMetadataFaceObject.swift",
        "CrossPlatform/AVKit/STMetadataObject/STMetadataMachineReadableCodeObject.swift",
        "CrossPlatform/AVKit/STMetadataObject/STMetadataObject.swift",
        "CrossPlatform/AVKit/UIDevice+AVFoundation.swift",
        "CrossPlatform/AVKit/UIImage+video.swift",
        "CrossPlatform/Color/Color+darkMode.swift",
        "CrossPlatform/Color/STWrapperColor+typealias.swift",
        "CrossPlatform/Color/STWrapperColor.swift",
        "CrossPlatform/Custom/Bundle/Bundle.swift",
        "CrossPlatform/Custom/Combine/Combine+Async.swift",
        "CrossPlatform/Custom/Combine/Combine+NSObject.swift",
        "CrossPlatform/Custom/Combine/Combine+Publisher.swift",
        "CrossPlatform/Custom/Device/Device+cpu.swift",
        "CrossPlatform/Custom/Device/Device+information.swift",
        "CrossPlatform/Custom/Device/Device+network.swift",
        "CrossPlatform/Custom/Device/Device+other.swift",
        "CrossPlatform/Custom/Device/Device+space.swift",
        "CrossPlatform/Custom/Device/Device.swift",
        "CrossPlatform/Custom/Foundation/Delegate.swift",
        "CrossPlatform/Custom/Foundation/Gcd.swift",
        "CrossPlatform/Custom/Foundation/Notice/Notice.swift",
        "CrossPlatform/Custom/Foundation/Notice/NoticeParsable.swift",
        "CrossPlatform/Custom/Foundation/Notice/NoticeToken.swift",
        "CrossPlatform/Custom/Foundation/Notice/NoticeType.swift",
        "CrossPlatform/Custom/Foundation/STLRUCache.swift",
        "CrossPlatform/Custom/Foundation/UserDefaults.swift",
        "CrossPlatform/Custom/Foundation/Version/STVersion.swift",
        "CrossPlatform/Custom/Foundation/Version/Version+StringLiteralConvertible.swift",
        "CrossPlatform/Custom/Location/LocationTransformer.swift",
        "CrossPlatform/Custom/StemArrayResultBuilder.swift",
        "CrossPlatform/Custom/StemError.swift",
        "CrossPlatform/Custom/StemFont.swift",
        "CrossPlatform/Custom/StemShell.swift",
        "CrossPlatform/Custom/StringMarker/StringMarker.swift",
        "CrossPlatform/Custom/StringMarker/StringRender+Marker.swift",
        "CrossPlatform/Custom/StringMarker/StringRender.swift",
        "CrossPlatform/Foundation/Coder/Coder.swift",
        "CrossPlatform/Foundation/Date/Date.swift",
        "CrossPlatform/Foundation/Date/Timer.swift",
        "CrossPlatform/Foundation/Dispatch/DispatchQueue.swift",
        "CrossPlatform/Foundation/Fundamentals/Formatter/ByteCountFormatter.swift",
        "CrossPlatform/Foundation/Fundamentals/Formatter/NumberFormatter.swift",
        "CrossPlatform/Foundation/NSItemProvider/NSItemProvider.swift",
        "CrossPlatform/Foundation/StringProtocol/CharacterSet.swift",
        "CrossPlatform/Foundation/StringProtocol/StringProtocol.swift",
        "CrossPlatform/Foundation/Then.swift",
        "CrossPlatform/Fundamentals/Collections/Array.swift",
        "CrossPlatform/Fundamentals/Collections/CollectionConcurrencyKit.swift",
        "CrossPlatform/Fundamentals/Collections/Dictionary.swift",
        "CrossPlatform/Fundamentals/Collections/IndexPath.swift",
        "CrossPlatform/Fundamentals/Collections/STCountedSet.swift",
        "CrossPlatform/Fundamentals/Collections/Sequence.swift",
        "CrossPlatform/Fundamentals/Data/Data+MimeType.swift",
        "CrossPlatform/Fundamentals/Data/Data+crypto.swift",
        "CrossPlatform/Fundamentals/Data/Data.swift",
        "CrossPlatform/Fundamentals/Geometry/CGFloat.swift",
        "CrossPlatform/Fundamentals/Geometry/CGPoint.swift",
        "CrossPlatform/Fundamentals/Geometry/CGRect.swift",
        "CrossPlatform/Fundamentals/Geometry/CGSize.swift",
        "CrossPlatform/Fundamentals/Geometry/CGVector.swift",
        "CrossPlatform/Fundamentals/Number/Bool.swift",
        "CrossPlatform/Fundamentals/Number/Decimal.swift",
        "CrossPlatform/Fundamentals/Number/Double.swift",
        "CrossPlatform/Fundamentals/String/Character/Character.swift",
        "CrossPlatform/Fundamentals/String/String+Emoji.swift",
        "CrossPlatform/Fundamentals/String/String+Header.swift",
        "CrossPlatform/Fundamentals/String/String+Map.swift",
        "CrossPlatform/Fundamentals/String/String+random.swift",
        "CrossPlatform/Fundamentals/String/String+substring.swift",
        "CrossPlatform/Fundamentals/String/String+tokenize.swift",
        "CrossPlatform/Fundamentals/URL/URL.swift",
        "CrossPlatform/ISO/ISO_3166-1_alpha-2.swift",
        "CrossPlatform/MapKit/CLGeocoder.swift",
        "CrossPlatform/NSObject/NSObject.swift",
        "CrossPlatform/NSObject/NSObjectObserver.swift",
        "CrossPlatform/NSObject/STWeak.swift",
        "CrossPlatform/Network/NetworkMonitor.swift",
        "CrossPlatform/Parser/JSON/StemXML.swift",
        "CrossPlatform/Runtime/Invocation.swift",
        "CrossPlatform/Runtime/RunTime+Exchange.swift",
        "CrossPlatform/Runtime/RunTime+ObjectType.swift",
        "CrossPlatform/Runtime/RunTime+Print.swift",
        "CrossPlatform/Runtime/RunTime.swift",
        "CrossPlatform/SFSymbol/SFSymbol+Image.swift",
        "CrossPlatform/SFSymbol/SFSymbol+NSImage.swift",
        "CrossPlatform/SFSymbol/SFSymbol+UIImage.swift",
        "CrossPlatform/SFSymbol/SFSymbol.swift",
        "CrossPlatform/STImage.swift",
        "CrossPlatform/STLyric.swift",
        "CrossPlatform/SwiftUI/STLazyView.swift",
        "CrossPlatform/UserNotifications/UNUserNotificationCenter.swift",
        "CrossPlatform/WebKit/HybridCookieStorage.swift",
        "CrossPlatform/WebKit/WebKit+WKWebView.swift",
        "STUIKit/RecoverNavigationProtocol/RecoverNavigationProtocol.swift",
        "UIKit/Application/UIApplication.swift",
        "UIKit/Application/UIWindow.swift",
        "UIKit/AttributedString/AttributedString+Attribute.swift",
        "UIKit/AttributedString/AttributedString.swift",
        "UIKit/AttributedString/MutableAttributedString.swift",
        "UIKit/Control/UIButton.swift",
        "UIKit/Control/UIControl.swift",
        "UIKit/Custom/GestureRecognizer/STGestureRecognizer.swift",
        "UIKit/Custom/TapticEngine/TapticEngine.swift",
        "UIKit/Font/UIFont.swift",
        "UIKit/GestureRecognizer/UIGestureRecognizer+State.swift",
        "UIKit/Image/CGImage/CGImage.swift",
        "UIKit/Image/CoreImage/CIFilter+Generator.swift",
        "UIKit/Image/CoreImage/CIFilter+enum.swift",
        "UIKit/Image/CoreImage/CIFilter+protocol.swift",
        "UIKit/Image/NSImage/NSImage+Data.swift",
        "UIKit/Image/NSImage/NSImage+Resize.swift",
        "UIKit/Image/SVG/StemSVG.swift",
        "UIKit/Image/UIImage/UIImage+Color.swift",
        "UIKit/Image/UIImage/UIImage+CoreImage.swift",
        "UIKit/Image/UIImage/UIImage+Edit.swift",
        "UIKit/Image/UIImage/UIImage+Format.swift",
        "UIKit/Image/UIImage/UIImage+info.swift",
        "UIKit/Image/UIImage/UIImage+size.swift",
        "UIKit/Image/UIImage/UImage+other.swift",
        "UIKit/ImageView/UIImageView.swift",
        "UIKit/InputView/UISearchBar.swift",
        "UIKit/InputView/UITextField.swift",
        "UIKit/InputView/UITextView.swift",
        "UIKit/Interface/UINib.swift",
        "UIKit/Interface/UIStoryboard.swift",
        "UIKit/Keyboard/KeyboardStateManager.swift",
        "UIKit/Keyboard/UIKeyCommand.swift",
        "UIKit/Label/UILabel.swift",
        "UIKit/ListView/UIScrollView.swift",
        "UIKit/NSLayoutConstraint/NSLayoutConstraint.swift",
        "UIKit/View/CALayer+Stem.swift",
        "UIKit/View/STLayerView.swift",
        "UIKit/View/STSwitch.swift",
        "UIKit/View/UIResponder.swift",
        "UIKit/View/UIStackView.swift",
        "UIKit/View/UIView.swift",
        "UIKit/ViewController/STControllerPreview.swift",
        "UIKit/ViewController/UINavigationController.swift",
        "UIKit/ViewController/UIViewController.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.