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 Actions, reference v1.5.1 (19111b), with Swift 6.0 for macOS (SPM) on 27 Nov 2024 03:45:24 UTC.

Swift 6 data race errors: 18

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/elegantchaos/Actions.git
Reference: v1.5.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/elegantchaos/Actions
 * tag               v1.5.1     -> FETCH_HEAD
HEAD is now at 19111bc Fixed tvOS version requirements. Don't test/build for watchOS for now.
Cloned https://github.com/elegantchaos/Actions.git
Revision (git rev-parse @):
19111bc61490fd50c9dfd746ec5e79188ca1a2d3
SUCCESS checkout https://github.com/elegantchaos/Actions.git at v1.5.1
Fetching https://github.com/elegantchaos/Logger.git
[1/2051] Fetching logger
Fetched https://github.com/elegantchaos/Logger.git from cache (0.96s)
Computing version for https://github.com/elegantchaos/Logger.git
Computed https://github.com/elegantchaos/Logger.git at 1.5.3 (0.55s)
Creating working copy for https://github.com/elegantchaos/Logger.git
Working copy of https://github.com/elegantchaos/Logger.git resolved at 1.5.3
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "actions",
      "name": "Actions",
      "url": "https://github.com/elegantchaos/Actions.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Actions",
      "dependencies": [
        {
          "identity": "logger",
          "name": "Logger",
          "url": "https://github.com/elegantchaos/Logger.git",
          "version": "1.8.2",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Logger",
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/elegantchaos/Actions.git
[1/961] Fetching actions
Fetched https://github.com/elegantchaos/Actions.git from cache (0.87s)
Fetching https://github.com/elegantchaos/Logger.git from cache
Fetched https://github.com/elegantchaos/Logger.git from cache (0.49s)
Computing version for https://github.com/elegantchaos/Logger.git
Computed https://github.com/elegantchaos/Logger.git at 1.8.2 (0.54s)
Creating working copy for https://github.com/elegantchaos/Actions.git
Working copy of https://github.com/elegantchaos/Actions.git resolved at v1.5.1 (19111bc)
Creating working copy for https://github.com/elegantchaos/Logger.git
Working copy of https://github.com/elegantchaos/Logger.git resolved at 1.8.2
warning: '.resolve-product-dependencies': dependency 'actions' is not used by any target
Found 1 product dependencies
  - Logger
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/elegantchaos/Actions.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version--7754E27361AE5C74.txt
[5/12] Compiling Logger NSLogHandler.swift
[6/12] Compiling Logger PrintHandler.swift
[7/12] Compiling Logger Manager.swift
[8/12] Compiling Logger Context.swift
[9/12] Emitting module Logger
[10/12] Compiling Logger Handler.swift
[11/12] Compiling Logger OSLogHandler.swift
[12/12] Compiling Logger Channel.swift
[13/22] Compiling Actions DecodableWithContext.swift
[14/22] Compiling Actions ActionKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
19 |
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
   |                       |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'action' 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
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:22:23: warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
22 |     public static let actionComponents: ActionKey = "components"
   |                       |- warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'actionComponents' 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
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:23:23: warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
21 |     public static let action: ActionKey = "action"
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
   |                       |- warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'document' 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
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
   |                       |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'info' 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
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:25:23: warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
   |                       |- warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'model' 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 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' 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
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:27:23: warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
   |                       |- warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'object' 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
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
   |                       |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'observer' 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
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:29:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
   |                       |- warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'root' 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 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:30:23: warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
   |                       |- warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'selection' 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
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' 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
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:32:23: warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
   |                       |- warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'skipValidation' 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
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:33:23: warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
   |                       |- warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'target' 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
34 |     public static let viewModel: ActionKey = "viewModel"
35 |     public static let window: ActionKey = "window"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:34:23: warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
   |                       |- warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'viewModel' 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
35 |     public static let window: ActionKey = "window"
36 | }
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:35:23: warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
35 |     public static let window: ActionKey = "window"
   |                       |- warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'window' 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
36 | }
37 |
[15/22] Compiling Actions ActionManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionManager.swift:13:12: warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |  */
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
    |            `- warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
 13 |  */
 14 |
 15 | public class Channel {
    |              `- note: class 'Channel' does not conform to the 'Sendable' protocol
 16 |
 17 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionManager.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
  5 |
  6 | import Foundation
  7 | import Logger
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
  8 |
  9 | /**
    :
 11 |  */
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
    |            |- note: annotate 'actionChannel' 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
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionManager.swift:14:12: warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
    |            |- warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'providerChannel' 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
 15 |
 16 | public protocol ActionResponder {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
 13 |  */
 14 |
 15 | public class Channel {
    |              `- note: class 'Channel' does not conform to the 'Sendable' protocol
 16 |
 17 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' 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
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:32:23: warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
   |                       |- warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'skipValidation' 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
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
[16/22] Compiling Actions ActionNotification.swift
[17/22] Compiling Actions ActionInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
   |                       |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'observer' 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
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' 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
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' 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
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
[18/22] Compiling Actions ActionIdentification.swift
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | #endif
17 |
18 | private var actionIDKey: UInt8 = 0
   |             |- warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'actionIDKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'actionIDKey' 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
19 |
20 | extension ActionIdentification {
[19/22] Compiling Actions Action.swift
[20/22] Emitting module Actions
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' 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
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | #endif
17 |
18 | private var actionIDKey: UInt8 = 0
   |             |- warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'actionIDKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'actionIDKey' 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
19 |
20 | extension ActionIdentification {
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
   |                       |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'observer' 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
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
19 |
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
   |                       |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'action' 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
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:22:23: warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
22 |     public static let actionComponents: ActionKey = "components"
   |                       |- warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'actionComponents' 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
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:23:23: warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
21 |     public static let action: ActionKey = "action"
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
   |                       |- warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'document' 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
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
   |                       |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'info' 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
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:25:23: warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
   |                       |- warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'model' 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 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:27:23: warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
   |                       |- warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'object' 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
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:29:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
   |                       |- warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'root' 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 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:30:23: warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
   |                       |- warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'selection' 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
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' 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
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:32:23: warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
   |                       |- warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'skipValidation' 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
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:33:23: warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
   |                       |- warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'target' 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
34 |     public static let viewModel: ActionKey = "viewModel"
35 |     public static let window: ActionKey = "window"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:34:23: warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
   |                       |- warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'viewModel' 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
35 |     public static let window: ActionKey = "window"
36 | }
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:35:23: warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
35 |     public static let window: ActionKey = "window"
   |                       |- warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'window' 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
36 | }
37 |
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionManager.swift:13:12: warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |  */
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
    |            `- warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
 15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
 13 |  */
 14 |
 15 | public class Channel {
    |              `- note: class 'Channel' does not conform to the 'Sendable' protocol
 16 |
 17 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionManager.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
  5 |
  6 | import Foundation
  7 | import Logger
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
  8 |
  9 | /**
    :
 11 |  */
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
    |            |- note: annotate 'actionChannel' 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
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionManager.swift:14:12: warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
    |            |- warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'providerChannel' 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
 15 |
 16 | public protocol ActionResponder {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
 13 |  */
 14 |
 15 | public class Channel {
    |              `- note: class 'Channel' does not conform to the 'Sendable' protocol
 16 |
 17 |     /**
[21/22] Compiling Actions ActionSerialisation.swift
[22/22] Compiling Actions ActionContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' 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
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' 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
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
19 |
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
   |                       |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'action' 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
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
   |                       |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'info' 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
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
[23/23] Compiling Actions DelegatedAction.swift
[24/25] Compiling ActionsTestSupport ActionsTestSupport.swift
[25/25] Emitting module ActionsTestSupport
Build complete! (16.92s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "logger",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/elegantchaos/Logger.git"
    }
  ],
  "manifest_display_name" : "Actions",
  "name" : "Actions",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "Actions",
      "targets" : [
        "Actions"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ActionsTestSupport",
      "targets" : [
        "ActionsTestSupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ActionsTests",
      "module_type" : "SwiftTarget",
      "name" : "ActionsTests",
      "path" : "Tests/ActionsTests",
      "sources" : [
        "ActionContextTests.swift",
        "ActionIdentificationTests.swift",
        "ActionObserverTests.swift",
        "ActionSerializationTests.swift",
        "ActionsNotificationTests.swift",
        "ActionsTests.swift",
        "DelegatedActionTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Actions",
        "ActionsTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ActionsTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "ActionsTestSupport",
      "path" : "Sources/ActionsTestSupport",
      "product_memberships" : [
        "ActionsTestSupport"
      ],
      "sources" : [
        "ActionsTestSupport.swift"
      ],
      "target_dependencies" : [
        "Actions"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Actions",
      "module_type" : "SwiftTarget",
      "name" : "Actions",
      "path" : "Sources/Actions",
      "product_dependencies" : [
        "Logger"
      ],
      "product_memberships" : [
        "Actions",
        "ActionsTestSupport"
      ],
      "sources" : [
        "Action.swift",
        "ActionContext.swift",
        "ActionIdentification.swift",
        "ActionInfo.swift",
        "ActionKey.swift",
        "ActionManager.swift",
        "ActionNotification.swift",
        "ActionSerialisation.swift",
        "DecodableWithContext.swift",
        "DelegatedAction.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.