This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of EventDrivenSwift with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Flowduino/EventDrivenSwift.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Flowduino/EventDrivenSwift
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 9b995ec Improvements to the Event-Driven Swift diagram
Cloned https://github.com/Flowduino/EventDrivenSwift.git
Revision (git rev-parse @):
9b995ec40ae6c1404c9329f7c982021760cf0d18
SUCCESS checkout https://github.com/Flowduino/EventDrivenSwift.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/Flowduino/EventDrivenSwift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-6F35C1178C84523A.txt
[5/6] Compiling ThreadSafeSwift ThreadSafeSemaphore.swift
[6/6] Emitting module ThreadSafeSwift
[7/15] Compiling Observable ObservableClass.swift
[8/15] Compiling Observable Observable.swift
[9/15] Compiling Observable ObservableThread.swift
[10/15] Compiling Observable ObservableThreadSafeClass.swift
[11/15] Compiling Observable KeyedObservableThread.swift
[12/15] Compiling Observable KeyedObservableClass.swift
[13/15] Compiling Observable KeyedObservable.swift
[14/15] Emitting module Observable
[15/15] Compiling Observable KeyedObservableThreadSafeClass.swift
[16/45] Compiling EventDrivenSwift EventPoolScaling.swift
[17/45] Compiling EventDrivenSwift EventPoolStaticScaler.swift
[18/45] Compiling EventDrivenSwift EventPooling.swift
[19/48] Compiling EventDrivenSwift EventListening.swift
[20/48] Compiling EventDrivenSwift EventListenerHandler.swift
[21/48] Compiling EventDrivenSwift EventListenerHandling.swift
[22/48] Compiling EventDrivenSwift EventPoolBalancer.swift
[23/48] Compiling EventDrivenSwift EventPoolBalancing.swift
[24/48] Compiling EventDrivenSwift EventPoolScaler.swift
[25/48] Compiling EventDrivenSwift EventListenable.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:82:41: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 27 |      - Version: 3.0.0
 28 |      */
 29 |     public struct EventListenerContainer {
    |                   `- note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
 30 |         var token: UUID = UUID() // Randomly-generated
 31 |         weak var requester: AnyObject?
    :
 80 |             case .requesterThread:
 81 |                 Task { // We raise a Task because we don't want the entire Listener blocked in the event the dispatchQueue is busy or blocked!
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
    |                                         `- warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                           `- warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 28 |      - Note: This was added principally to support Latest-Only Event Listeners/Callbacks
 29 |      */
 30 |     public struct EventDispatchContainer {
    |                   `- note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 31 |         var event: any Eventable
 32 |         var dispatchTime: DispatchTime = DispatchTime.now()
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                                        `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:25: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 27 |      - Version: 3.0.0
 28 |      */
 29 |     public struct EventListenerContainer {
    |                   `- note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
 30 |         var token: UUID = UUID() // Randomly-generated
 31 |         weak var requester: AnyObject?
    :
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                         `- warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                           `- warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 28 |      - Note: This was added principally to support Latest-Only Event Listeners/Callbacks
 29 |      */
 30 |     public struct EventDispatchContainer {
    |                   `- note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 31 |         var event: any Eventable
 32 |         var dispatchTime: DispatchTime = DispatchTime.now()
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                                        `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:21: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 27 |      - Version: 3.0.0
 28 |      */
 29 |     public struct EventListenerContainer {
    |                   `- note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
 30 |         var token: UUID = UUID() // Randomly-generated
 31 |         weak var requester: AnyObject?
    :
 89 |             case .taskThread:
 90 |                 Task {
 91 |                     listener.callback(event.event, priority, event.dispatchTime)
    |                     `- warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 92 |                 }
 93 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:39: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 89 |             case .taskThread:
 90 |                 Task {
 91 |                     listener.callback(event.event, priority, event.dispatchTime)
    |                                       `- warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 92 |                 }
 93 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 28 |      - Note: This was added principally to support Latest-Only Event Listeners/Callbacks
 29 |      */
 30 |     public struct EventDispatchContainer {
    |                   `- note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 31 |         var event: any Eventable
 32 |         var dispatchTime: DispatchTime = DispatchTime.now()
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:52: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 89 |             case .taskThread:
 90 |                 Task {
 91 |                     listener.callback(event.event, priority, event.dispatchTime)
    |                                                    `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 92 |                 }
 93 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
[26/48] Compiling EventDrivenSwift EventListener.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:82:41: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 27 |      - Version: 3.0.0
 28 |      */
 29 |     public struct EventListenerContainer {
    |                   `- note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
 30 |         var token: UUID = UUID() // Randomly-generated
 31 |         weak var requester: AnyObject?
    :
 80 |             case .requesterThread:
 81 |                 Task { // We raise a Task because we don't want the entire Listener blocked in the event the dispatchQueue is busy or blocked!
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
    |                                         `- warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                           `- warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 28 |      - Note: This was added principally to support Latest-Only Event Listeners/Callbacks
 29 |      */
 30 |     public struct EventDispatchContainer {
    |                   `- note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 31 |         var event: any Eventable
 32 |         var dispatchTime: DispatchTime = DispatchTime.now()
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                                        `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:25: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 27 |      - Version: 3.0.0
 28 |      */
 29 |     public struct EventListenerContainer {
    |                   `- note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
 30 |         var token: UUID = UUID() // Randomly-generated
 31 |         weak var requester: AnyObject?
    :
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                         `- warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                           `- warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 28 |      - Note: This was added principally to support Latest-Only Event Listeners/Callbacks
 29 |      */
 30 |     public struct EventDispatchContainer {
    |                   `- note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 31 |         var event: any Eventable
 32 |         var dispatchTime: DispatchTime = DispatchTime.now()
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                                        `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:21: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 27 |      - Version: 3.0.0
 28 |      */
 29 |     public struct EventListenerContainer {
    |                   `- note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
 30 |         var token: UUID = UUID() // Randomly-generated
 31 |         weak var requester: AnyObject?
    :
 89 |             case .taskThread:
 90 |                 Task {
 91 |                     listener.callback(event.event, priority, event.dispatchTime)
    |                     `- warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 92 |                 }
 93 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:39: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 89 |             case .taskThread:
 90 |                 Task {
 91 |                     listener.callback(event.event, priority, event.dispatchTime)
    |                                       `- warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 92 |                 }
 93 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 28 |      - Note: This was added principally to support Latest-Only Event Listeners/Callbacks
 29 |      */
 30 |     public struct EventDispatchContainer {
    |                   `- note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 31 |         var event: any Eventable
 32 |         var dispatchTime: DispatchTime = DispatchTime.now()
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:52: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 89 |             case .taskThread:
 90 |                 Task {
 91 |                     listener.callback(event.event, priority, event.dispatchTime)
    |                                                    `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 92 |                 }
 93 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
[27/48] Compiling EventDrivenSwift EventListenerInterest.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:82:41: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 27 |      - Version: 3.0.0
 28 |      */
 29 |     public struct EventListenerContainer {
    |                   `- note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
 30 |         var token: UUID = UUID() // Randomly-generated
 31 |         weak var requester: AnyObject?
    :
 80 |             case .requesterThread:
 81 |                 Task { // We raise a Task because we don't want the entire Listener blocked in the event the dispatchQueue is busy or blocked!
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
    |                                         `- warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                           `- warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 28 |      - Note: This was added principally to support Latest-Only Event Listeners/Callbacks
 29 |      */
 30 |     public struct EventDispatchContainer {
    |                   `- note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 31 |         var event: any Eventable
 32 |         var dispatchTime: DispatchTime = DispatchTime.now()
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                                        `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:25: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 27 |      - Version: 3.0.0
 28 |      */
 29 |     public struct EventListenerContainer {
    |                   `- note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
 30 |         var token: UUID = UUID() // Randomly-generated
 31 |         weak var requester: AnyObject?
    :
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                         `- warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                           `- warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 28 |      - Note: This was added principally to support Latest-Only Event Listeners/Callbacks
 29 |      */
 30 |     public struct EventDispatchContainer {
    |                   `- note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 31 |         var event: any Eventable
 32 |         var dispatchTime: DispatchTime = DispatchTime.now()
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 82 |                     let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
 83 |                     dispatchQueue.async {
 84 |                         listener.callback(event.event, priority, event.dispatchTime)
    |                                                        `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 |                     }
 86 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:21: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 27 |      - Version: 3.0.0
 28 |      */
 29 |     public struct EventListenerContainer {
    |                   `- note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
 30 |         var token: UUID = UUID() // Randomly-generated
 31 |         weak var requester: AnyObject?
    :
 89 |             case .taskThread:
 90 |                 Task {
 91 |                     listener.callback(event.event, priority, event.dispatchTime)
    |                     `- warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 92 |                 }
 93 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:39: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 89 |             case .taskThread:
 90 |                 Task {
 91 |                     listener.callback(event.event, priority, event.dispatchTime)
    |                                       `- warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 92 |                 }
 93 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 28 |      - Note: This was added principally to support Latest-Only Event Listeners/Callbacks
 29 |      */
 30 |     public struct EventDispatchContainer {
    |                   `- note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
 31 |         var event: any Eventable
 32 |         var dispatchTime: DispatchTime = DispatchTime.now()
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:52: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 89 |             case .taskThread:
 90 |                 Task {
 91 |                     listener.callback(event.event, priority, event.dispatchTime)
    |                                                    `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 92 |                 }
 93 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
[28/48] Emitting module EventDrivenSwift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      - Version: 1.0.0
 24 |      */
 25 |     private static var _shared: EventCentral = EventCentral()
    |                        |- warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
   :
27 |      - Note: This is necessary because we always process Events in priority-order from `highest` to `lowest`
28 |      */
29 |     public static let inOrder = Self.allCases.reversed()
   |                       |- warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'inOrder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
19 |     private static var _shared: UIEventThreadable? = nil
   |                        |- warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     public static var shared: UIEventThreadable {
[29/48] Compiling EventDrivenSwift EventCentral.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      - Version: 1.0.0
 24 |      */
 25 |     private static var _shared: EventCentral = EventCentral()
    |                        |- warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
   :
27 |      - Note: This is necessary because we always process Events in priority-order from `highest` to `lowest`
28 |      */
29 |     public static let inOrder = Self.allCases.reversed()
   |                       |- warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'inOrder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[30/48] Compiling EventDrivenSwift EventCentralable.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      - Version: 1.0.0
 24 |      */
 25 |     private static var _shared: EventCentral = EventCentral()
    |                        |- warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
   :
27 |      - Note: This is necessary because we always process Events in priority-order from `highest` to `lowest`
28 |      */
29 |     public static let inOrder = Self.allCases.reversed()
   |                       |- warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'inOrder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[31/48] Compiling EventDrivenSwift EventDispatchMethod.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      - Version: 1.0.0
 24 |      */
 25 |     private static var _shared: EventCentral = EventCentral()
    |                        |- warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
   :
27 |      - Note: This is necessary because we always process Events in priority-order from `highest` to `lowest`
28 |      */
29 |     public static let inOrder = Self.allCases.reversed()
   |                       |- warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'inOrder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[32/48] Compiling EventDrivenSwift EventPriority.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      - Version: 1.0.0
 24 |      */
 25 |     private static var _shared: EventCentral = EventCentral()
    |                        |- warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
   :
27 |      - Note: This is necessary because we always process Events in priority-order from `highest` to `lowest`
28 |      */
29 |     public static let inOrder = Self.allCases.reversed()
   |                       |- warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'inOrder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[33/48] Compiling EventDrivenSwift EventThreadable.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
19 |     private static var _shared: UIEventThreadable? = nil
   |                        |- warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     public static var shared: UIEventThreadable {
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
16 |  - Note: Your Event Handlers/Listeners/Callbacks will be executed on the UI Thread every time.
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
   |            `- note: class 'UIEventThread' does not conform to the 'Sendable' protocol
19 |     private static var _shared: UIEventThreadable? = nil
20 |
   :
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                 `- warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                              |- warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                                              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                  `- warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                                      `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
16 |  - Note: Your Event Handlers/Listeners/Callbacks will be executed on the UI Thread every time.
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
   |            `- note: class 'UIEventThread' does not conform to the 'Sendable' protocol
19 |     private static var _shared: UIEventThreadable? = nil
20 |
   :
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                 `- warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                              |- warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                                              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                  `- warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                                      `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
[34/48] Compiling EventDrivenSwift UIEventThread.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
19 |     private static var _shared: UIEventThreadable? = nil
   |                        |- warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     public static var shared: UIEventThreadable {
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
16 |  - Note: Your Event Handlers/Listeners/Callbacks will be executed on the UI Thread every time.
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
   |            `- note: class 'UIEventThread' does not conform to the 'Sendable' protocol
19 |     private static var _shared: UIEventThreadable? = nil
20 |
   :
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                 `- warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                              |- warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                                              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                  `- warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                                      `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
16 |  - Note: Your Event Handlers/Listeners/Callbacks will be executed on the UI Thread every time.
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
   |            `- note: class 'UIEventThread' does not conform to the 'Sendable' protocol
19 |     private static var _shared: UIEventThreadable? = nil
20 |
   :
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                 `- warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                              |- warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                                              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                  `- warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                                      `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
[35/48] Compiling EventDrivenSwift UIEventThreadable.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
19 |     private static var _shared: UIEventThreadable? = nil
   |                        |- warning: static property '_shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     public static var shared: UIEventThreadable {
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
16 |  - Note: Your Event Handlers/Listeners/Callbacks will be executed on the UI Thread every time.
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
   |            `- note: class 'UIEventThread' does not conform to the 'Sendable' protocol
19 |     private static var _shared: UIEventThreadable? = nil
20 |
   :
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                 `- warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                              |- warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                                              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                  `- warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                                      `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
16 |  - Note: Your Event Handlers/Listeners/Callbacks will be executed on the UI Thread every time.
17 |  */
18 | open class UIEventThread: EventThread, UIEventThreadable {
   |            `- note: class 'UIEventThread' does not conform to the 'Sendable' protocol
19 |     private static var _shared: UIEventThreadable? = nil
20 |
   :
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                 `- warning: capture of 'self' with non-sendable type 'UIEventThread' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                              |- warning: capture of 'callback' with non-sendable type 'TypedEventCallback<TEvent>' (aka '(TEvent, EventPriority, DispatchTime) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                                              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                  `- warning: capture of 'forEvent' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
29 |         Task { /// Have to use a Task because this method is not `async`
30 |             await MainActor.run { /// Forces the call to be invoked on the `MainActor` (UI Thread)
31 |                 super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
   |                                                                                      `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |             }
33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
[36/48] Compiling EventDrivenSwift EventDispatching.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
   :
27 |      - Note: This is necessary because we always process Events in priority-order from `highest` to `lowest`
28 |      */
29 |     public static let inOrder = Self.allCases.reversed()
   |                       |- warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'inOrder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[37/48] Compiling EventDrivenSwift EventHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
   :
27 |      - Note: This is necessary because we always process Events in priority-order from `highest` to `lowest`
28 |      */
29 |     public static let inOrder = Self.allCases.reversed()
   |                       |- warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'inOrder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[38/48] Compiling EventDrivenSwift EventHandling.swift
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
135 |         Task {
136 |             DispatchQueue.main.asyncAfter(deadline: at) {
137 |                 self.queueEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
138 |             }
139 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 21 |
 22 |  */
 23 | open class EventHandler: ObservableThread, EventHandling {
    |            `- note: class 'EventHandler' does not conform to the 'Sendable' protocol
 24 |     /**
 25 |      A new Container to associate each Event with information about its Dispatch (such as Dispatch Time)
    :
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                 `- warning: capture of 'self' with non-sendable type 'EventHandler' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                 `- warning: capture of 'event' with non-sendable type 'any Eventable' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift:18:17: note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 16 |  - Note: `Eventable` types **must** always be **immutable**
 17 |  */
 18 | public protocol Eventable {
    |                 `- note: protocol 'Eventable' does not conform to the 'Sendable' protocol
 19 |     /**
 20 |      Dispatch the Event to the Central Queue with the given `priority`
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
143 |         Task {
144 |             DispatchQueue.main.asyncAfter(deadline: at) {
145 |                 self.stackEvent(event, priority: priority)
    |                                                  `- warning: capture of 'priority' with non-sendable type 'EventPriority' in a `@Sendable` closure; this is an error in the Swift 6 language mode
146 |             }
147 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
14 |  - Version: 1.0.0
15 |  */
16 | public enum EventPriority: CaseIterable {
   |             `- note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
17 |     case lowest
18 |     case low
   :
27 |      - Note: This is necessary because we always process Events in priority-order from `highest` to `lowest`
28 |      */
29 |     public static let inOrder = Self.allCases.reversed()
   |                       |- warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'inOrder' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | }
31 |
[39/48] Compiling EventDrivenSwift Eventable.swift
[40/48] Compiling EventDrivenSwift EventListeners.swift
[41/48] Compiling EventDrivenSwift EventMethod.swift
[42/48] Compiling EventDrivenSwift EventDispatcher.swift
[43/48] Compiling EventDrivenSwift EventPool.swift
[44/48] Compiling EventDrivenSwift EventPoolLowestLoadBalancer.swift
[45/48] Compiling EventDrivenSwift EventPoolRoundRobinBalancer.swift
[46/48] Compiling EventDrivenSwift EventReceiver.swift
[47/48] Compiling EventDrivenSwift EventReceiving.swift
[48/48] Compiling EventDrivenSwift EventThread.swift
Build complete! (23.92s)
Fetching https://github.com/Flowduino/Observable.git
Fetching https://github.com/Flowduino/ThreadSafeSwift.git
[1/116] Fetching observable
[78/169] Fetching observable, threadsafeswift
Fetched https://github.com/Flowduino/ThreadSafeSwift.git from cache (0.76s)
Fetched https://github.com/Flowduino/Observable.git from cache (0.76s)
Computing version for https://github.com/Flowduino/Observable.git
Computed https://github.com/Flowduino/Observable.git at 2.0.0 (0.67s)
Computing version for https://github.com/Flowduino/ThreadSafeSwift.git
Computed https://github.com/Flowduino/ThreadSafeSwift.git at 1.1.0 (0.64s)
Creating working copy for https://github.com/Flowduino/ThreadSafeSwift.git
Working copy of https://github.com/Flowduino/ThreadSafeSwift.git resolved at 1.1.0
Creating working copy for https://github.com/Flowduino/Observable.git
Working copy of https://github.com/Flowduino/Observable.git resolved at 2.0.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "threadsafeswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Flowduino/ThreadSafeSwift.git"
    },
    {
      "identity" : "observable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Flowduino/Observable.git"
    }
  ],
  "manifest_display_name" : "EventDrivenSwift",
  "name" : "EventDrivenSwift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "EventDrivenSwift",
      "targets" : [
        "EventDrivenSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EventDrivenSwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "EventDrivenSwiftTests",
      "path" : "Tests/EventDrivenSwiftTests",
      "product_dependencies" : [
        "ThreadSafeSwift",
        "Observable"
      ],
      "sources" : [
        "BasicEventListenerTests.swift",
        "BasicEventPoolTests.swift",
        "BasicEventSchedulingTests.swift",
        "BasicEventThreadTests.swift"
      ],
      "target_dependencies" : [
        "EventDrivenSwift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "EventDrivenSwift",
      "module_type" : "SwiftTarget",
      "name" : "EventDrivenSwift",
      "path" : "Sources/EventDrivenSwift",
      "product_dependencies" : [
        "ThreadSafeSwift",
        "Observable"
      ],
      "product_memberships" : [
        "EventDrivenSwift"
      ],
      "sources" : [
        "Central/EventCentral.swift",
        "Central/EventCentralable.swift",
        "Event/EventDispatchMethod.swift",
        "Event/EventPriority.swift",
        "Event/Eventable.swift",
        "Event/Wrappers/EventListeners.swift",
        "Event/Wrappers/EventMethod.swift",
        "EventDispatcher/EventDispatcher.swift",
        "EventDispatcher/EventDispatching.swift",
        "EventHandler/EventHandler.swift",
        "EventHandler/EventHandling.swift",
        "EventListener/EventListenable.swift",
        "EventListener/EventListener.swift",
        "EventListener/EventListenerInterest.swift",
        "EventListener/EventListening.swift",
        "EventListener/Handler/EventListenerHandler.swift",
        "EventListener/Handler/EventListenerHandling.swift",
        "EventPool/EventPool.swift",
        "EventPool/EventPoolBalancer/Balancers/EventPoolLowestLoadBalancer.swift",
        "EventPool/EventPoolBalancer/Balancers/EventPoolRoundRobinBalancer.swift",
        "EventPool/EventPoolBalancer/EventPoolBalancer.swift",
        "EventPool/EventPoolBalancer/EventPoolBalancing.swift",
        "EventPool/EventPoolScaler/EventPoolScaler.swift",
        "EventPool/EventPoolScaler/EventPoolScaling.swift",
        "EventPool/EventPoolScaler/Scalers/EventPoolStaticScaler.swift",
        "EventPool/EventPooling.swift",
        "EventReceiver/EventReceiver.swift",
        "EventReceiver/EventReceiving.swift",
        "EventThread/EventThread.swift",
        "EventThread/EventThreadable.swift",
        "UIEventThread/UIEventThread.swift",
        "UIEventThread/UIEventThreadable.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.