The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Workflow, reference main (53fc18), with Swift 6.1 for macOS (SPM) on 31 May 2025 19:24:34 UTC.

Swift 6 data race errors: 34

Build Command

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

Build Log

[773/930] Compiling Workflow WorkflowLogger.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:27:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |     /// `true`, defaults to the `workflow` handle, otherwise defaults to the shared `.disabled`
 26 |     /// handle.
 27 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .workflow : .disabled
    |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | }
 29 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:93:23: warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 |     /// Configuration options used to determine which activities are logged.
 93 |     public static var config: Config = .rootRendersAndActions
    |                       |- warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'config' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'config' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 | }
 95 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:99:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | extension WorkflowLogging {
 50 |     public struct Config {
    |                   `- note: consider making struct 'Config' conform to the 'Sendable' protocol
 51 |         /// Configuration options to control logging during a render pass.
 52 |         public enum RenderLoggingMode {
    :
 97 |     /// Logging config that will output the most information.
 98 |     /// Will also have the most noticeable effect on performance.
 99 |     public static let debug: Self = .init(renderLoggingMode: .allNodes, logLifetimes: true, logActions: true)
    |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 |     /// Logging config that will record render timings for root nodes as well as action events.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:104:23: warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | extension WorkflowLogging {
 50 |     public struct Config {
    |                   `- note: consider making struct 'Config' conform to the 'Sendable' protocol
 51 |         /// Configuration options to control logging during a render pass.
 52 |         public enum RenderLoggingMode {
    :
102 |     /// This provides a reasonable performance tradeoff if you're interested in the runtime's behavior
103 |     /// but don't wan to pay the price of logging everything.
104 |     public static let rootRendersAndActions: Self = .init(renderLoggingMode: .rootsOnly, logLifetimes: false, logActions: true)
    |                       |- warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'rootRendersAndActions' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | }
106 |
[774/957] Emitting module SwiftSyntax
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[775/964] Compiling Workflow WorkflowObserver.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:107:28: warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 | public struct WorkflowSession {
106 |     public struct Identifier: Hashable {
107 |         private static var _nextRawID: UInt64 = 0
    |                            |- warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert '_nextRawID' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: add '@MainActor' to make static property '_nextRawID' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |         private static func _makeNextSessionID() -> UInt64 {
109 |             let nextID = _nextRawID
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:349:24: warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
347 | @_spi(WorkflowGlobalObservation)
348 | public enum WorkflowObservation {
349 |     private static var _sharedInterceptorStorage: ObserversInterceptor = NoOpObserversInterceptor()
    |                        |- warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_sharedInterceptorStorage' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_sharedInterceptorStorage' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
350 |
351 |     /// The `DefaultObserversProvider` used by all runtimes.
[776/964] Compiling CasePathsCore Optional+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[777/964] Compiling CasePathsCore Never+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[778/964] Compiling CasePathsCore UncheckedSendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[779/964] Compiling CasePathsCore TypeName.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[780/964] Compiling CasePathsCore KeyPath+Sendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[781/965] Compiling Workflow WorkflowLogger.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:27:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |     /// `true`, defaults to the `workflow` handle, otherwise defaults to the shared `.disabled`
 26 |     /// handle.
 27 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .workflow : .disabled
    |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | }
 29 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:93:23: warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 |     /// Configuration options used to determine which activities are logged.
 93 |     public static var config: Config = .rootRendersAndActions
    |                       |- warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'config' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'config' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 | }
 95 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:99:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | extension WorkflowLogging {
 50 |     public struct Config {
    |                   `- note: consider making struct 'Config' conform to the 'Sendable' protocol
 51 |         /// Configuration options to control logging during a render pass.
 52 |         public enum RenderLoggingMode {
    :
 97 |     /// Logging config that will output the most information.
 98 |     /// Will also have the most noticeable effect on performance.
 99 |     public static let debug: Self = .init(renderLoggingMode: .allNodes, logLifetimes: true, logActions: true)
    |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 |     /// Logging config that will record render timings for root nodes as well as action events.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:104:23: warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | extension WorkflowLogging {
 50 |     public struct Config {
    |                   `- note: consider making struct 'Config' conform to the 'Sendable' protocol
 51 |         /// Configuration options to control logging during a render pass.
 52 |         public enum RenderLoggingMode {
    :
102 |     /// This provides a reasonable performance tradeoff if you're interested in the runtime's behavior
103 |     /// but don't wan to pay the price of logging everything.
104 |     public static let rootRendersAndActions: Self = .init(renderLoggingMode: .rootsOnly, logLifetimes: false, logActions: true)
    |                       |- warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'rootRendersAndActions' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | }
106 |
[782/966] Compiling Workflow WorkflowNode.swift
[783/966] Compiling Workflow WorkflowHost.swift
[784/976] Compiling CasePathsCore CasePathReflectable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[785/976] Compiling CasePathsCore AnyCasePath.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[786/976] Compiling CasePathsCore CasePathIterable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[787/976] Emitting module CasePathsCore
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[788/976] Compiling CasePathsCore CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[789/976] Compiling CasePathsCore Result+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[790/976] Compiling CasePathsCore UncheckedSendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[791/976] Compiling CasePathsCore Never+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[792/976] Compiling CasePathsCore TypeName.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[793/976] Compiling CasePathsCore Optional+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[794/977] Compiling Workflow WorkflowObserver.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:107:28: warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 | public struct WorkflowSession {
106 |     public struct Identifier: Hashable {
107 |         private static var _nextRawID: UInt64 = 0
    |                            |- warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert '_nextRawID' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: add '@MainActor' to make static property '_nextRawID' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |         private static func _makeNextSessionID() -> UInt64 {
109 |             let nextID = _nextRawID
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:349:24: warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
347 | @_spi(WorkflowGlobalObservation)
348 | public enum WorkflowObservation {
349 |     private static var _sharedInterceptorStorage: ObserversInterceptor = NoOpObserversInterceptor()
    |                        |- warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_sharedInterceptorStorage' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_sharedInterceptorStorage' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
350 |
351 |     /// The `DefaultObserversProvider` used by all runtimes.
[795/981] Compiling Workflow Workflow.swift
[796/981] Compiling Workflow WorkflowAction.swift
[797/981] Compiling Workflow DispatchQueue+Workflow.swift
[798/981] Compiling Workflow Lifetime.swift
[799/981] Compiling Workflow RenderContext.swift
[800/981] Compiling Workflow Sink.swift
[801/981] Emitting module Workflow
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/Debugging.swift:163:28: warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |  */
 16 |
 17 | public struct WorkflowUpdateDebugInfo: Codable, Equatable {
    |               `- note: consider making struct 'WorkflowUpdateDebugInfo' conform to the 'Sendable' protocol
 18 |     public var workflowType: String
 19 |     public var kind: Kind
    :
161 |
162 | extension WorkflowUpdateDebugInfo {
163 |     fileprivate static let unexpectedlyMissing = {
    |                            |- warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'unexpectedlyMissing' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |         assertionFailure("Creation of actual WorkflowUpdateDebugInfo failed unexpectedly")
165 |         return WorkflowUpdateDebugInfo(
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:27:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |     /// `true`, defaults to the `workflow` handle, otherwise defaults to the shared `.disabled`
 26 |     /// handle.
 27 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .workflow : .disabled
    |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | }
 29 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:93:23: warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 |     /// Configuration options used to determine which activities are logged.
 93 |     public static var config: Config = .rootRendersAndActions
    |                       |- warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'config' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'config' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 | }
 95 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:99:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | extension WorkflowLogging {
 50 |     public struct Config {
    |                   `- note: consider making struct 'Config' conform to the 'Sendable' protocol
 51 |         /// Configuration options to control logging during a render pass.
 52 |         public enum RenderLoggingMode {
    :
 97 |     /// Logging config that will output the most information.
 98 |     /// Will also have the most noticeable effect on performance.
 99 |     public static let debug: Self = .init(renderLoggingMode: .allNodes, logLifetimes: true, logActions: true)
    |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 |     /// Logging config that will record render timings for root nodes as well as action events.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:104:23: warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
 48 |
 49 | extension WorkflowLogging {
 50 |     public struct Config {
    |                   `- note: consider making struct 'Config' conform to the 'Sendable' protocol
 51 |         /// Configuration options to control logging during a render pass.
 52 |         public enum RenderLoggingMode {
    :
102 |     /// This provides a reasonable performance tradeoff if you're interested in the runtime's behavior
103 |     /// but don't wan to pay the price of logging everything.
104 |     public static let rootRendersAndActions: Self = .init(renderLoggingMode: .rootsOnly, logLifetimes: false, logActions: true)
    |                       |- warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'rootRendersAndActions' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | }
106 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:107:28: warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 | public struct WorkflowSession {
106 |     public struct Identifier: Hashable {
107 |         private static var _nextRawID: UInt64 = 0
    |                            |- warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert '_nextRawID' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: add '@MainActor' to make static property '_nextRawID' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 |         private static func _makeNextSessionID() -> UInt64 {
109 |             let nextID = _nextRawID
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:349:24: warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
347 | @_spi(WorkflowGlobalObservation)
348 | public enum WorkflowObservation {
349 |     private static var _sharedInterceptorStorage: ObserversInterceptor = NoOpObserversInterceptor()
    |                        |- warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_sharedInterceptorStorage' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property '_sharedInterceptorStorage' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
350 |
351 |     /// The `DefaultObserversProvider` used by all runtimes.
[802/981] Compiling Workflow ApplyContext.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/Debugging.swift:163:28: warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |  */
 16 |
 17 | public struct WorkflowUpdateDebugInfo: Codable, Equatable {
    |               `- note: consider making struct 'WorkflowUpdateDebugInfo' conform to the 'Sendable' protocol
 18 |     public var workflowType: String
 19 |     public var kind: Kind
    :
161 |
162 | extension WorkflowUpdateDebugInfo {
163 |     fileprivate static let unexpectedlyMissing = {
    |                            |- warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'unexpectedlyMissing' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |         assertionFailure("Creation of actual WorkflowUpdateDebugInfo failed unexpectedly")
165 |         return WorkflowUpdateDebugInfo(
[803/981] Compiling Workflow Debugging.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/Debugging.swift:163:28: warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |  */
 16 |
 17 | public struct WorkflowUpdateDebugInfo: Codable, Equatable {
    |               `- note: consider making struct 'WorkflowUpdateDebugInfo' conform to the 'Sendable' protocol
 18 |     public var workflowType: String
 19 |     public var kind: Kind
    :
161 |
162 | extension WorkflowUpdateDebugInfo {
163 |     fileprivate static let unexpectedlyMissing = {
    |                            |- warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'unexpectedlyMissing' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |         assertionFailure("Creation of actual WorkflowUpdateDebugInfo failed unexpectedly")
165 |         return WorkflowUpdateDebugInfo(
[804/981] Compiling Workflow AnyWorkflow.swift
[805/981] Compiling Workflow AnyWorkflowConvertible.swift
[806/981] Compiling Workflow StateMutationSink.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:21: warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
333 |     }
334 |
335 |     fileprivate final class ReusableSink<Action: WorkflowAction>: AnyReusableSink where Action.WorkflowType == WorkflowType {
    |                             `- note: generic class 'ReusableSink' does not conform to the 'Sendable' protocol
336 |         func handle(action: Action) {
337 |             let output = Output.update(action, source: .external)
    :
341 |                 // Scheduling it to be processed after.
342 |                 DispatchQueue.workflowExecution.async { [weak self] in
343 |                     self?.eventPipe.handle(event: output)
    |                     `- warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
344 |                 }
345 |                 return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:51: warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
156 |
157 | extension WorkflowNode.SubtreeManager {
158 |     enum Output {
    |          `- note: consider making enum 'Output' conform to the 'Sendable' protocol
159 |         case update(any WorkflowAction<WorkflowType>, source: EventSource)
160 |         case childDidUpdate(WorkflowUpdateDebugInfo?)
    :
341 |                 // Scheduling it to be processed after.
342 |                 DispatchQueue.workflowExecution.async { [weak self] in
343 |                     self?.eventPipe.handle(event: output)
    |                                                   `- warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
344 |                 }
345 |                 return
[807/981] Compiling Workflow SubtreeManager.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:21: warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
333 |     }
334 |
335 |     fileprivate final class ReusableSink<Action: WorkflowAction>: AnyReusableSink where Action.WorkflowType == WorkflowType {
    |                             `- note: generic class 'ReusableSink' does not conform to the 'Sendable' protocol
336 |         func handle(action: Action) {
337 |             let output = Output.update(action, source: .external)
    :
341 |                 // Scheduling it to be processed after.
342 |                 DispatchQueue.workflowExecution.async { [weak self] in
343 |                     self?.eventPipe.handle(event: output)
    |                     `- warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
344 |                 }
345 |                 return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:51: warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
156 |
157 | extension WorkflowNode.SubtreeManager {
158 |     enum Output {
    |          `- note: consider making enum 'Output' conform to the 'Sendable' protocol
159 |         case update(any WorkflowAction<WorkflowType>, source: EventSource)
160 |         case childDidUpdate(WorkflowUpdateDebugInfo?)
    :
341 |                 // Scheduling it to be processed after.
342 |                 DispatchQueue.workflowExecution.async { [weak self] in
343 |                     self?.eventPipe.handle(event: output)
    |                                                   `- warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
344 |                 }
345 |                 return
[808/981] Compiling CasePathsCore KeyPath+Sendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[809/981] Emitting module CasePathsCore
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[810/981] Compiling CasePathsCore AnyCasePath.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[811/981] Compiling CasePathsCore CasePathIterable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[812/981] Compiling CasePathsCore CasePathReflectable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[813/981] Compiling CasePathsCore CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[814/987] Compiling CasePathsCore Result+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[815/987] Emitting module WorkflowRxSwift
/Users/admin/builder/spi-builder-workspace/WorkflowRxSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |     fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowRxSwift", category: "Worker")
35 |
36 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
   |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
   |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[816/987] Compiling WorkflowRxSwift ObservableWorkflow.swift
[817/987] Compiling WorkflowRxSwift Worker.swift
[818/987] Compiling WorkflowRxSwift Logger.swift
/Users/admin/builder/spi-builder-workspace/WorkflowRxSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |     fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowRxSwift", category: "Worker")
35 |
36 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
   |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
   |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[819/997] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[820/997] Compiling WorkflowReactiveSwift SignalWorker.swift
[821/997] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:23:16: warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
21 |
22 | extension QueueScheduler {
23 |     static let workflowExecution: QueueScheduler = .init(
   |                `- warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
24 |         qos: .userInteractive,
25 |         name: "com.squareup.workflow",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ReactiveSwift/Sources/Scheduler.swift:322:20: note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
320 |
321 | /// A scheduler backed by a serial GCD queue.
322 | public final class QueueScheduler: DateScheduler {
    |                    `- note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
323 | 	/// A singleton `QueueScheduler` that always targets the main thread's GCD
324 | 	/// queue.
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
16 |
17 | import Foundation
18 | import ReactiveSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
19 |
20 | @_spi(WorkflowInternals) import Workflow
21 |
22 | extension QueueScheduler {
23 |     static let workflowExecution: QueueScheduler = .init(
   |                |- note: add '@MainActor' to make static property 'workflowExecution' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         qos: .userInteractive,
25 |         name: "com.squareup.workflow",
[822/997] Compiling WorkflowReactiveSwift Logger.swift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |     fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowReactiveSwift", category: "Worker")
35 |
36 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
   |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
   |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[823/997] Compiling WorkflowReactiveSwift Worker.swift
[824/997] Emitting module WorkflowReactiveSwift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |     fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowReactiveSwift", category: "Worker")
35 |
36 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
   |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
   |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:23:16: warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
21 |
22 | extension QueueScheduler {
23 |     static let workflowExecution: QueueScheduler = .init(
   |                `- warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
24 |         qos: .userInteractive,
25 |         name: "com.squareup.workflow",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ReactiveSwift/Sources/Scheduler.swift:322:20: note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
320 |
321 | /// A scheduler backed by a serial GCD queue.
322 | public final class QueueScheduler: DateScheduler {
    |                    `- note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
323 | 	/// A singleton `QueueScheduler` that always targets the main thread's GCD
324 | 	/// queue.
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
16 |
17 | import Foundation
18 | import ReactiveSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
19 |
20 | @_spi(WorkflowInternals) import Workflow
21 |
22 | extension QueueScheduler {
23 |     static let workflowExecution: QueueScheduler = .init(
   |                |- note: add '@MainActor' to make static property 'workflowExecution' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         qos: .userInteractive,
25 |         name: "com.squareup.workflow",
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[832/1001] Compiling WorkflowRxSwift Logger.swift
/Users/admin/builder/spi-builder-workspace/WorkflowRxSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |     fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowRxSwift", category: "Worker")
35 |
36 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
   |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
   |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[833/1001] Emitting module WorkflowRxSwift
/Users/admin/builder/spi-builder-workspace/WorkflowRxSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |     fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowRxSwift", category: "Worker")
35 |
36 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
   |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
   |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[834/1001] Compiling WorkflowRxSwift Worker.swift
[835/1001] Compiling WorkflowRxSwift ObservableWorkflow.swift
[836/1005] Compiling WorkflowReactiveSwift Logger.swift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |     fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowReactiveSwift", category: "Worker")
35 |
36 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
   |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
   |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[837/1005] Compiling WorkflowReactiveSwift SignalWorker.swift
[838/1005] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:23:16: warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
21 |
22 | extension QueueScheduler {
23 |     static let workflowExecution: QueueScheduler = .init(
   |                `- warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
24 |         qos: .userInteractive,
25 |         name: "com.squareup.workflow",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ReactiveSwift/Sources/Scheduler.swift:322:20: note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
320 |
321 | /// A scheduler backed by a serial GCD queue.
322 | public final class QueueScheduler: DateScheduler {
    |                    `- note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
323 | 	/// A singleton `QueueScheduler` that always targets the main thread's GCD
324 | 	/// queue.
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
16 |
17 | import Foundation
18 | import ReactiveSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
19 |
20 | @_spi(WorkflowInternals) import Workflow
21 |
22 | extension QueueScheduler {
23 |     static let workflowExecution: QueueScheduler = .init(
   |                |- note: add '@MainActor' to make static property 'workflowExecution' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         qos: .userInteractive,
25 |         name: "com.squareup.workflow",
[839/1005] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[840/1005] Emitting module WorkflowReactiveSwift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |     fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowReactiveSwift", category: "Worker")
35 |
36 |     fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
   |                            |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
   |                            |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:23:16: warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
21 |
22 | extension QueueScheduler {
23 |     static let workflowExecution: QueueScheduler = .init(
   |                `- warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
24 |         qos: .userInteractive,
25 |         name: "com.squareup.workflow",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ReactiveSwift/Sources/Scheduler.swift:322:20: note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
320 |
321 | /// A scheduler backed by a serial GCD queue.
322 | public final class QueueScheduler: DateScheduler {
    |                    `- note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
323 | 	/// A singleton `QueueScheduler` that always targets the main thread's GCD
324 | 	/// queue.
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
16 |
17 | import Foundation
18 | import ReactiveSwift
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
19 |
20 | @_spi(WorkflowInternals) import Workflow
21 |
22 | extension QueueScheduler {
23 |     static let workflowExecution: QueueScheduler = .init(
   |                |- note: add '@MainActor' to make static property 'workflowExecution' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         qos: .userInteractive,
25 |         name: "com.squareup.workflow",
[841/1005] Compiling WorkflowReactiveSwift Worker.swift
[842/1010] Compiling WorkflowConcurrency Worker.swift
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:66:58: warning: converting non-sendable function value to '@MainActor @Sendable (WorkerWorkflow<WorkerType>.Output) -> Void' (aka '@MainActor @Sendable (WorkerType.Output) -> ()') may introduce data races
64 |         let sink = context.makeOutputSink()
65 |         context.runSideEffect(key: state) { lifetime in
66 |             let send: @MainActor (Output) -> Void = sink.send
   |                                                          `- warning: converting non-sendable function value to '@MainActor @Sendable (WorkerWorkflow<WorkerType>.Output) -> Void' (aka '@MainActor @Sendable (WorkerType.Output) -> ()') may introduce data races
67 |             let task = Task(priority: .high) {
68 |                 logger.logStarted()
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:67:46: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
65 |         context.runSideEffect(key: state) { lifetime in
66 |             let send: @MainActor (Output) -> Void = sink.send
67 |             let task = Task(priority: .high) {
   |                                              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
68 |                 logger.logStarted()
   |                 `- note: closure captures non-Sendable 'logger'
69 |                 let output = await worker.run()
   |                                    `- note: closure captures non-Sendable 'self'
70 |                 if Task.isCancelled {
71 |                     logger.logFinished(status: "Cancelled")
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:77:23: warning: sending 'output' risks causing data races; this is an error in the Swift 6 language mode
75 |                 logger.logOutput()
76 |                 logger.logFinished(status: "Finished")
77 |                 await send(output)
   |                       |- warning: sending 'output' risks causing data races; this is an error in the Swift 6 language mode
   |                       `- note: sending task-isolated 'output' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
78 |             }
79 |             lifetime.onEnded {
[843/1010] Compiling WorkflowConcurrency Logger.swift
[844/1010] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[845/1010] Emitting module WorkflowConcurrency
[846/1015] Compiling WorkflowConcurrency Logger.swift
[847/1015] Emitting module WorkflowConcurrency
[848/1015] Compiling WorkflowConcurrency Worker.swift
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:66:58: warning: converting non-sendable function value to '@MainActor @Sendable (WorkerWorkflow<WorkerType>.Output) -> Void' (aka '@MainActor @Sendable (WorkerType.Output) -> ()') may introduce data races
64 |         let sink = context.makeOutputSink()
65 |         context.runSideEffect(key: state) { lifetime in
66 |             let send: @MainActor (Output) -> Void = sink.send
   |                                                          `- warning: converting non-sendable function value to '@MainActor @Sendable (WorkerWorkflow<WorkerType>.Output) -> Void' (aka '@MainActor @Sendable (WorkerType.Output) -> ()') may introduce data races
67 |             let task = Task(priority: .high) {
68 |                 logger.logStarted()
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:67:46: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
65 |         context.runSideEffect(key: state) { lifetime in
66 |             let send: @MainActor (Output) -> Void = sink.send
67 |             let task = Task(priority: .high) {
   |                                              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
68 |                 logger.logStarted()
   |                 `- note: closure captures non-Sendable 'logger'
69 |                 let output = await worker.run()
   |                                    `- note: closure captures non-Sendable 'self'
70 |                 if Task.isCancelled {
71 |                     logger.logFinished(status: "Cancelled")
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:77:23: warning: sending 'output' risks causing data races; this is an error in the Swift 6 language mode
75 |                 logger.logOutput()
76 |                 logger.logFinished(status: "Finished")
77 |                 await send(output)
   |                       |- warning: sending 'output' risks causing data races; this is an error in the Swift 6 language mode
   |                       `- note: sending task-isolated 'output' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
78 |             }
79 |             lifetime.onEnded {
[849/1015] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[850/1015] Compiling WorkflowCombine Publisher+Extensions.swift
[851/1015] Compiling WorkflowCombine PublisherWorkflow.swift
[852/1015] Emitting module WorkflowCombine
[853/1015] Compiling WorkflowCombine Logger.swift
[854/1015] Compiling WorkflowCombine Worker.swift
[855/1015] Compiling WorkflowCombine PublisherWorkflow.swift
[856/1015] Compiling WorkflowCombine Logger.swift
[857/1015] Emitting module WorkflowCombine
[858/1015] Compiling WorkflowCombine Publisher+Extensions.swift
[859/1015] Compiling WorkflowCombine Worker.swift
[860/1015] Emitting module ViewEnvironment
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/EnvironmentValues+ViewEnvironment.swift:28:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
26 |
27 |     private struct ViewEnvironmentKey: EnvironmentKey {
28 |         static let defaultValue: ViewEnvironment = .empty
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     }
30 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:24:15: note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
   |               `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 |     /// An empty view environment. This should only be used when setting up a
26 |     /// root workflow into a root WorkflowHostingController or when writing tests.
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:29:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
   |               `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 |     /// An empty view environment. This should only be used when setting up a
26 |     /// root workflow into a root WorkflowHostingController or when writing tests.
27 |     /// In other scenarios, containers should pass down the ViewEnvironment
28 |     /// value they get from above.
29 |     public static let empty: ViewEnvironment = .init()
   |                       |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Storage of [K.Type: K.Value] where K: ViewEnvironmentKey
[861/1015] Compiling ViewEnvironment EnvironmentValues+ViewEnvironment.swift
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/EnvironmentValues+ViewEnvironment.swift:28:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
26 |
27 |     private struct ViewEnvironmentKey: EnvironmentKey {
28 |         static let defaultValue: ViewEnvironment = .empty
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     }
30 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:24:15: note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
   |               `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 |     /// An empty view environment. This should only be used when setting up a
26 |     /// root workflow into a root WorkflowHostingController or when writing tests.
[862/1015] Emitting module ViewEnvironment
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/EnvironmentValues+ViewEnvironment.swift:28:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
26 |
27 |     private struct ViewEnvironmentKey: EnvironmentKey {
28 |         static let defaultValue: ViewEnvironment = .empty
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     }
30 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:24:15: note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
   |               `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 |     /// An empty view environment. This should only be used when setting up a
26 |     /// root workflow into a root WorkflowHostingController or when writing tests.
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:29:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
   |               `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 |     /// An empty view environment. This should only be used when setting up a
26 |     /// root workflow into a root WorkflowHostingController or when writing tests.
27 |     /// In other scenarios, containers should pass down the ViewEnvironment
28 |     /// value they get from above.
29 |     public static let empty: ViewEnvironment = .init()
   |                       |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Storage of [K.Type: K.Value] where K: ViewEnvironmentKey
[863/1015] Compiling ViewEnvironment EnvironmentValues+ViewEnvironment.swift
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/EnvironmentValues+ViewEnvironment.swift:28:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
26 |
27 |     private struct ViewEnvironmentKey: EnvironmentKey {
28 |         static let defaultValue: ViewEnvironment = .empty
   |                    |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     }
30 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:24:15: note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
   |               `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 |     /// An empty view environment. This should only be used when setting up a
26 |     /// root workflow into a root WorkflowHostingController or when writing tests.
[864/1027] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[865/1027] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[866/1027] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[868/1027] Emitting module ViewEnvironmentUI
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:404:16: warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 |
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 |     static var needsEnvironmentUpdate: UInt8 = 0
    |                |- warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'needsEnvironmentUpdate' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'needsEnvironmentUpdate' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:405:16: warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 |     static var needsEnvironmentUpdate: UInt8 = 0
405 |     static var needsUpdateObservers: UInt8 = 0
    |                |- warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'needsUpdateObservers' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'needsUpdateObservers' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:406:16: warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
404 |     static var needsEnvironmentUpdate: UInt8 = 0
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
    |                |- warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'ancestorOverride' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'ancestorOverride' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 |     static var descendantsOverride: UInt8 = 0
408 |     static var customizations: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:407:16: warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
    |                |- warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'descendantsOverride' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'descendantsOverride' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
408 |     static var customizations: UInt8 = 0
409 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:408:16: warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
408 |     static var customizations: UInt8 = 0
    |                |- warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'customizations' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'customizations' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 | }
410 |
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:404:16: warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 |
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 |     static var needsEnvironmentUpdate: UInt8 = 0
    |                |- warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'needsEnvironmentUpdate' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'needsEnvironmentUpdate' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:405:16: warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 |     static var needsEnvironmentUpdate: UInt8 = 0
405 |     static var needsUpdateObservers: UInt8 = 0
    |                |- warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'needsUpdateObservers' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'needsUpdateObservers' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:406:16: warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
404 |     static var needsEnvironmentUpdate: UInt8 = 0
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
    |                |- warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'ancestorOverride' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'ancestorOverride' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 |     static var descendantsOverride: UInt8 = 0
408 |     static var customizations: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:407:16: warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
    |                |- warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'descendantsOverride' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'descendantsOverride' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
408 |     static var customizations: UInt8 = 0
409 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:408:16: warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
408 |     static var customizations: UInt8 = 0
    |                |- warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'customizations' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'customizations' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 | }
410 |
[870/1027] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[871/1027] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:404:16: warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 |
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 |     static var needsEnvironmentUpdate: UInt8 = 0
    |                |- warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'needsEnvironmentUpdate' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'needsEnvironmentUpdate' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:405:16: warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 |     static var needsEnvironmentUpdate: UInt8 = 0
405 |     static var needsUpdateObservers: UInt8 = 0
    |                |- warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'needsUpdateObservers' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'needsUpdateObservers' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:406:16: warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
404 |     static var needsEnvironmentUpdate: UInt8 = 0
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
    |                |- warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'ancestorOverride' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'ancestorOverride' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 |     static var descendantsOverride: UInt8 = 0
408 |     static var customizations: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:407:16: warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
    |                |- warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'descendantsOverride' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'descendantsOverride' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
408 |     static var customizations: UInt8 = 0
409 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:408:16: warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
408 |     static var customizations: UInt8 = 0
    |                |- warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'customizations' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'customizations' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 | }
410 |
[872/1027] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[873/1027] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[874/1027] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[875/1027] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:404:16: warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 |
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 |     static var needsEnvironmentUpdate: UInt8 = 0
    |                |- warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'needsEnvironmentUpdate' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'needsEnvironmentUpdate' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:405:16: warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 |     static var needsEnvironmentUpdate: UInt8 = 0
405 |     static var needsUpdateObservers: UInt8 = 0
    |                |- warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'needsUpdateObservers' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'needsUpdateObservers' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:406:16: warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
404 |     static var needsEnvironmentUpdate: UInt8 = 0
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
    |                |- warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'ancestorOverride' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'ancestorOverride' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 |     static var descendantsOverride: UInt8 = 0
408 |     static var customizations: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:407:16: warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
405 |     static var needsUpdateObservers: UInt8 = 0
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
    |                |- warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'descendantsOverride' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'descendantsOverride' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
408 |     static var customizations: UInt8 = 0
409 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:408:16: warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
406 |     static var ancestorOverride: UInt8 = 0
407 |     static var descendantsOverride: UInt8 = 0
408 |     static var customizations: UInt8 = 0
    |                |- warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'customizations' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'customizations' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 | }
410 |
[876/1053] Compiling WorkflowUI DescribedViewController.swift
[877/1054] Compiling CustomDump Mirror.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[878/1054] Compiling CustomDump String.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[879/1054] Compiling CustomDump Unordered.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[880/1056] Compiling WorkflowUI UIViewController+Extensions.swift
[881/1056] Compiling WorkflowUI AnyScreen.swift
[882/1056] Compiling WorkflowUI WorkflowHostingController.swift
[883/1056] Compiling WorkflowUI ModuleExports.swift
[884/1056] Compiling WorkflowUI Screen.swift
[885/1056] Compiling WorkflowUI ScreenContaining.swift
[886/1056] Emitting module WorkflowUI
[887/1056] Compiling WorkflowUI WorkflowUIEvents.swift
[888/1056] Compiling WorkflowUI WorkflowUIObserver.swift
[889/1056] Compiling WorkflowUI WorkflowUIViewController.swift
[890/1056] Compiling WorkflowUI AdaptedEnvironmentScreen.swift
[891/1056] Compiling WorkflowUI ScreenViewController.swift
[892/1056] Compiling WorkflowUI DescribedViewController.swift
[893/1057] Compiling WorkflowUI ScreenViewController.swift
[894/1057] Compiling WorkflowUI UIViewController+Extensions.swift
[895/1057] Compiling WorkflowUI ScreenContaining.swift
[896/1057] Compiling WorkflowUI AnyScreen.swift
[899/1057] Compiling WorkflowUI Screen.swift
[900/1057] Emitting module WorkflowUI
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[908/1057] Compiling CustomDump Swift.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[909/1057] Compiling CustomDump SwiftUI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[910/1057] Compiling CustomDump UIKit.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[933/1059] Compiling WorkflowUI ViewControllerDescription.swift
[935/1059] Emitting module CustomDump
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[940/1059] Compiling CustomDump XCTAssertDifference.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[941/1059] Compiling CustomDump XCTAssertNoDifference.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[953/1059] Compiling CustomDump UserNotifications.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[954/1059] Compiling CustomDump UserNotificationsUI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[955/1059] Compiling CustomDump CustomDumpReflectable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[959/1059] Compiling PerceptionCore PerceptionRegistrar.swift
[960/1059] Compiling PerceptionCore PerceptionTracking.swift
[961/1059] Compiling PerceptionCore PerceptionChecking.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[971/1060] Compiling PerceptionCore Unchecked.swift
[974/1060] Compiling PerceptionCore Perceptible.swift
[977/1060] Compiling PerceptionCore _PerceptionRegistrar.swift
[978/1060] Emitting module PerceptionCore
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-perception/Sources/PerceptionCore/Bindable.swift:35:58: error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
33 |     ) -> Binding<Subject> where Value: AnyObject {
34 |       withPerceptionTracking {
35 |         self.$observer[dynamicMember: (\Observer.object).appending(path: keyPath)]
   |                                                          `- error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
36 |       } onChange: { [send = UncheckedSendable(self.observer.objectWillChange.send)] in
37 |         send.value()
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-perception/Sources/PerceptionCore/Bindable.swift:35:58: error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
33 |     ) -> Binding<Subject> where Value: AnyObject {
34 |       withPerceptionTracking {
35 |         self.$observer[dynamicMember: (\Observer.object).appending(path: keyPath)]
   |                                                          `- error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
36 |       } onChange: { [send = UncheckedSendable(self.observer.objectWillChange.send)] in
37 |         send.value()
[981/1060] Compiling PerceptionCore PerceptionTracking.swift
[982/1060] Compiling PerceptionCore PerceptionRegistrar.swift
[983/1060] Compiling PerceptionCore PerceptionChecking.swift
[984/1060] Compiling PerceptionCore Perceptible.swift
[987/1060] Compiling PerceptionCore Unchecked.swift
[990/1060] Emitting module PerceptionCore
[991/1060] Compiling PerceptionCore _PerceptionRegistrar.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-perception/Sources/PerceptionCore/Bindable.swift:35:58: error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
33 |     ) -> Binding<Subject> where Value: AnyObject {
34 |       withPerceptionTracking {
35 |         self.$observer[dynamicMember: (\Observer.object).appending(path: keyPath)]
   |                                                          `- error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
36 |       } onChange: { [send = UncheckedSendable(self.observer.objectWillChange.send)] in
37 |         send.value()
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-perception/Sources/PerceptionCore/Bindable.swift:35:58: error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
33 |     ) -> Binding<Subject> where Value: AnyObject {
34 |       withPerceptionTracking {
35 |         self.$observer[dynamicMember: (\Observer.object).appending(path: keyPath)]
   |                                                          `- error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
36 |       } onChange: { [send = UncheckedSendable(self.observer.objectWillChange.send)] in
37 |         send.value()
[994/1061] Compiling PerceptionCore WithPerceptionTracking.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
warning: 'spi-builder-workspace': dependency 'xctest-dynamic-overlay' is not used by any target
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/7] Write swift-version-2F0A5646E1D333AE.txt
[2/134] Emitting module SwiftSyntax509
[3/134] Compiling SwiftSyntax509 Empty.swift
[4/134] Emitting module SwiftSyntax600
[5/134] Compiling SwiftSyntax600 Empty.swift
[6/134] Emitting module SwiftSyntax510
[7/134] Compiling SwiftSyntax510 Empty.swift
[8/477] Compiling ViewEnvironment ViewEnvironmentKey.swift
[9/477] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[10/477] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[11/479] Compiling ViewEnvironment ViewEnvironmentKey.swift
[12/479] Compiling ViewEnvironment EnvironmentValues+ViewEnvironment.swift
[13/479] Compiling ViewEnvironment ViewEnvironment.swift
[14/479] Emitting module ViewEnvironment
[15/479] Compiling ViewEnvironment ViewEnvironment.swift
[16/479] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[17/479] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[18/479] Compiling InternalCollectionsUtilities Descriptions.swift
[19/480] Compiling ViewEnvironment EnvironmentValues+ViewEnvironment.swift
[20/480] Emitting module ViewEnvironment
[21/480] Compiling IssueReporting TestContext.swift
[22/480] Compiling IssueReporting Unimplemented.swift
[23/480] Compiling IssueReporting Warn.swift
[24/480] Compiling IssueReporting XCTest.swift
[25/480] Compiling IssueReporting IsTesting.swift
[26/480] Compiling IssueReporting IssueReporter.swift
[27/480] Compiling RxSwift AsMaybe.swift
[28/480] Compiling RxSwift AsSingle.swift
[29/480] Compiling RxSwift AsyncLock.swift
[30/480] Compiling RxSwift AsyncSubject.swift
[31/480] Compiling RxSwift AtomicInt.swift
[32/485] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[33/486] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[34/486] Compiling InternalCollectionsUtilities UInt+reversed.swift
[35/486] Compiling InternalCollectionsUtilities Descriptions.swift
[36/486] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[37/486] Compiling RxSwift Bag+Rx.swift
[38/486] Compiling RxSwift Bag.swift
[39/486] Compiling RxSwift BehaviorSubject.swift
[40/486] Compiling RxSwift BinaryDisposable.swift
[41/486] Compiling RxSwift Binder.swift
[42/486] Compiling RxSwift BooleanDisposable.swift
[43/486] Compiling RxSwift Buffer.swift
[44/486] Compiling RxSwift Enumerated.swift
[45/486] Compiling RxSwift Error.swift
[46/486] Compiling RxSwift Errors.swift
[47/486] Compiling IssueReporting BreakpointReporter.swift
[48/486] Compiling IssueReporting FatalErrorReporter.swift
[49/486] Compiling IssueReporting RuntimeWarningReporter.swift
[50/486] Compiling IssueReporting ReportIssue.swift
[53/486] Compiling IssueReporting WithExpectedIssue.swift
[54/486] Compiling IssueReporting WithIssueContext.swift
[55/486] Compiling RxSwift AnyObserver.swift
[56/486] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[87/497] Emitting module IssueReporting
[88/497] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[89/497] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[90/497] Compiling InternalCollectionsUtilities Integer rank.swift
[91/497] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[92/497] Compiling InternalCollectionsUtilities _SortedCollection.swift
[93/497] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[96/497] Compiling InternalCollectionsUtilities Debugging.swift
[97/497] Emitting module InternalCollectionsUtilities
[104/497] Compiling InternalCollectionsUtilities Debugging.swift
[105/497] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[108/562] Compiling SwiftSyntax SyntaxText.swift
[109/562] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[110/562] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[111/562] Compiling SwiftSyntax Syntax.swift
[112/562] Compiling SwiftSyntax SourceEdit.swift
[113/562] Compiling SwiftSyntax SourceLength.swift
[114/562] Compiling SwiftSyntax SyntaxArena.swift
[115/562] Compiling SwiftSyntax SyntaxProtocol.swift
[116/562] Compiling SwiftSyntax SourceLocation.swift
[117/562] Compiling SwiftSyntax SourcePresence.swift
[118/564] Compiling IssueReporting WithExpectedIssue.swift
[119/564] Compiling IssueReporting WithIssueContext.swift
[120/564] Compiling SwiftSyntax AbsolutePosition.swift
[121/564] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[122/564] Compiling SwiftSyntax BumpPtrAllocator.swift
[123/564] Compiling SwiftSyntax CommonAncestor.swift
[124/564] Emitting module InternalCollectionsUtilities
[125/564] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[126/564] Compiling SwiftSyntax Assert.swift
[133/570] Compiling SwiftSyntax Convenience.swift
[134/570] Compiling SwiftSyntax CustomTraits.swift
[135/570] Compiling RxSwift Decode.swift
[136/570] Compiling RxSwift DefaultIfEmpty.swift
[137/570] Compiling RxSwift Deferred.swift
[138/570] Compiling RxSwift Delay.swift
[139/570] Compiling RxSwift DelaySubscription.swift
[140/570] Compiling RxSwift Dematerialize.swift
[141/570] Compiling RxSwift DispatchQueue+Extensions.swift
[142/570] Compiling RxSwift DispatchQueueConfiguration.swift
[143/570] Compiling RxSwift Disposable.swift
[144/570] Compiling RxSwift Disposables.swift
[145/570] Compiling RxSwift DisposeBag.swift
[146/570] Compiling RxSwift DisposeBase.swift
[147/570] Compiling RxSwift DistinctUntilChanged.swift
[148/570] Compiling RxSwift Do.swift
[149/570] Compiling RxSwift ElementAt.swift
[150/570] Compiling RxSwift Empty.swift
[151/586] Emitting module IssueReporting
[152/586] Emitting module ReactiveSwift
[153/586] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[154/586] Emitting module ReactiveSwift
[155/645] Compiling RxSwift PrimitiveSequence+Zip+arity.swift
[156/645] Compiling RxSwift PrimitiveSequence.swift
[157/645] Compiling RxSwift PriorityQueue.swift
[158/645] Compiling RxSwift Producer.swift
[159/645] Compiling RxSwift PublishSubject.swift
[160/645] Compiling RxSwift Queue.swift
[161/645] Compiling RxSwift Range.swift
[162/645] Compiling RxSwift Reactive.swift
[163/645] Compiling RxSwift RecursiveLock.swift
[164/645] Compiling RxSwift RecursiveScheduler.swift
[165/645] Compiling RxSwift Reduce.swift
[166/645] Compiling RxSwift RefCountDisposable.swift
[167/645] Compiling RxSwift Repeat.swift
[168/645] Compiling RxSwift ReplaySubject.swift
[169/645] Compiling RxSwift RetryWhen.swift
[170/645] Compiling RxSwift Debug.swift
[171/645] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[172/645] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[173/645] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[174/645] Emitting module ViewEnvironmentUI
[175/645] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
[176/645] Compiling XCTestDynamicOverlay Exports.swift
[177/645] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[178/645] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[179/645] Compiling OrderedCollections _HashTable+Bucket.swift
[180/645] Compiling OrderedCollections _HashTable+BucketIterator.swift
[181/645] Compiling OrderedCollections _HashTable+Constants.swift
[182/645] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[183/645] Compiling OrderedCollections _HashTable+Testing.swift
[184/645] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[185/645] Compiling OrderedCollections _HashTable.swift
[186/645] Compiling OrderedCollections _Hashtable+Header.swift
[187/645] Compiling OrderedCollections OrderedDictionary+Codable.swift
[188/645] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[189/645] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[229/661] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[230/661] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[231/661] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[232/661] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[233/661] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[234/661] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[235/661] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[238/661] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[239/661] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[240/661] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[241/661] Compiling OrderedCollections OrderedDictionary+Values.swift
[242/661] Compiling OrderedCollections OrderedDictionary.swift
[243/661] Compiling OrderedCollections OrderedDictionary+Elements.swift
[244/661] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[245/661] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[246/661] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[247/661] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[248/661] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[249/661] Compiling OrderedCollections OrderedSet+Codable.swift
[250/661] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[251/730] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[252/730] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[253/730] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[254/730] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[255/730] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[256/730] Compiling OrderedCollections _HashTable+Bucket.swift
[257/730] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[258/730] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[259/730] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[260/730] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[261/730] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[262/730] Compiling OrderedCollections _Hashtable+Header.swift
[263/736] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[264/736] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[265/736] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[266/736] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[267/736] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
[268/736] Emitting module ViewEnvironmentUI
[269/736] Compiling RxSwift Skip.swift
[270/736] Compiling RxSwift SkipUntil.swift
[271/736] Compiling RxSwift SkipWhile.swift
[272/736] Compiling RxSwift StartWith.swift
[273/736] Compiling RxSwift SubjectType.swift
[274/736] Compiling RxSwift SubscribeOn.swift
[275/736] Compiling RxSwift SubscriptionDisposable.swift
[276/736] Compiling RxSwift SwiftSupport.swift
[277/736] Compiling RxSwift Switch.swift
[278/736] Compiling RxSwift SwitchIfEmpty.swift
[279/736] Compiling RxSwift SynchronizedDisposeType.swift
[280/736] Compiling RxSwift SynchronizedOnType.swift
[281/736] Compiling RxSwift SynchronizedUnsubscribeType.swift
[282/736] Compiling RxSwift TailRecursiveSink.swift
[283/736] Compiling RxSwift Take.swift
[284/736] Compiling RxSwift PrimitiveSequence+Concurrency.swift
[285/736] Compiling RxSwift Infallible+Debug.swift
[286/736] Compiling RxSwift Infallible+Operators.swift
[287/736] Compiling RxSwift Infallible+Zip+arity.swift
[288/736] Compiling RxSwift Infallible.swift
[289/736] Compiling RxSwift InfiniteSequence.swift
[290/736] Compiling RxSwift InvocableScheduledItem.swift
[291/736] Compiling RxSwift InvocableType.swift
[292/736] Compiling RxSwift Just.swift
[293/736] Compiling RxSwift Lock.swift
[294/736] Compiling RxSwift LockOwnerType.swift
[295/736] Compiling RxSwift MainScheduler.swift
[296/736] Compiling RxSwift Map.swift
[297/736] Compiling RxSwift Materialize.swift
[298/736] Compiling RxSwift Maybe.swift
[299/736] Compiling RxSwift Merge.swift
[300/736] Compiling RxSwift Multicast.swift
[301/736] Compiling RxSwift Sink.swift
[302/736] Compiling OrderedCollections OrderedSet+Codable.swift
[303/736] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[304/736] Compiling OrderedCollections OrderedSet+Descriptions.swift
[305/736] Compiling OrderedCollections OrderedSet+Diffing.swift
[306/736] Compiling OrderedCollections OrderedSet+Equatable.swift
[307/736] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[308/736] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[309/736] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[310/743] Compiling OrderedCollections OrderedSet+Hashable.swift
[311/743] Compiling OrderedCollections OrderedSet+Initializers.swift
[312/743] Compiling OrderedCollections OrderedSet+Insertions.swift
[313/743] Compiling OrderedCollections OrderedSet+Invariants.swift
[314/743] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[315/743] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[316/743] Compiling OrderedCollections OrderedSet+SubSequence.swift
[317/743] Compiling OrderedCollections OrderedSet+Testing.swift
[318/743] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[319/743] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[320/743] Compiling OrderedCollections OrderedSet.swift
[321/743] Compiling OrderedCollections _UnsafeBitset.swift
[322/743] Compiling SwiftSyntax SyntaxTraits.swift
[323/743] Compiling SwiftSyntax SyntaxVisitor.swift
[324/743] Compiling SwiftSyntax TokenKind.swift
[325/743] Compiling SwiftSyntax SyntaxNodesD.swift
[342/743] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[343/743] Compiling OrderedCollections _HashTable.swift
[344/743] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[345/743] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[346/743] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[348/743] Compiling OrderedCollections _HashTable+BucketIterator.swift
[349/743] Compiling OrderedCollections _HashTable+Constants.swift
[350/743] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[351/743] Compiling OrderedCollections _HashTable+Testing.swift
[362/743] Compiling SwiftSyntax SyntaxNodesGHI.swift
[363/743] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[364/743] Compiling SwiftSyntax SyntaxNodesOP.swift
[365/743] Compiling SwiftSyntax SyntaxNodesQRS.swift
[366/743] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[367/743] Compiling RxSwift Completable+AndThen.swift
[368/743] Compiling RxSwift Completable.swift
[369/743] Compiling RxSwift CompositeDisposable.swift
[370/743] Compiling RxSwift Concat.swift
[371/743] Compiling RxSwift ConcurrentDispatchQueueScheduler.swift
[372/743] Compiling RxSwift ConcurrentMainScheduler.swift
[373/743] Compiling RxSwift ConnectableObservableType.swift
[374/743] Compiling RxSwift Create.swift
[375/743] Compiling RxSwift CurrentThreadScheduler.swift
[376/743] Compiling RxSwift Date+Dispatch.swift
[377/743] Compiling RxSwift Debounce.swift
[378/743] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[379/743] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[380/743] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[381/743] Compiling OrderedCollections OrderedDictionary+Values.swift
[382/743] Compiling OrderedCollections OrderedDictionary.swift
[383/743] Compiling OrderedCollections OrderedDictionary+Elements.swift
[393/743] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[394/743] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[395/743] Compiling OrderedCollections OrderedSet+Sendable.swift
[403/743] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[404/743] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[405/743] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[406/743] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[407/743] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[408/743] Compiling OrderedCollections OrderedDictionary+Codable.swift
[409/743] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[410/743] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[411/743] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[412/743] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[413/743] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[414/743] Emitting module XCTestDynamicOverlay
[415/743] Compiling XCTestDynamicOverlay Deprecations.swift
[416/743] Emitting module RxSwift
[424/765] Compiling PerceptionCore BetaChecking.swift
[425/765] Compiling PerceptionCore Exports.swift
[426/765] Compiling PerceptionCore Locking.swift
[427/765] Compiling PerceptionCore ThreadLocal.swift
[428/765] Compiling PerceptionCore Bindable.swift
[429/765] Compiling PerceptionCore Environment.swift
[501/765] Compiling PerceptionCore PerceptionTracking.swift
[504/766] Emitting module PerceptionCore
[535/766] Compiling SwiftSyntax SyntaxNodesEF.swift
[552/766] Compiling OrderedCollections OrderedSet+SubSequence.swift
[553/766] Compiling OrderedCollections OrderedSet+Testing.swift
[554/766] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[555/766] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[556/766] Compiling OrderedCollections OrderedSet.swift
[557/766] Compiling OrderedCollections _UnsafeBitset.swift
[558/766] Compiling PerceptionCore Perceptible.swift
[559/766] Compiling PerceptionCore _PerceptionRegistrar.swift
[560/766] Compiling PerceptionCore Unchecked.swift
[561/766] Compiling PerceptionCore PerceptionChecking.swift
[564/766] Compiling PerceptionCore PerceptionRegistrar.swift
[598/766] Compiling PerceptionCore PerceptionTracking.swift
[599/767] Compiling XCTestDynamicOverlay Exports.swift
[600/767] Compiling XCTestDynamicOverlay Deprecations.swift
[601/767] Emitting module XCTestDynamicOverlay
[633/767] Compiling PerceptionCore WithPerceptionTracking.swift
[634/795] Compiling CustomDump CustomDumpRepresentable.swift
[635/795] Compiling CustomDump CustomDumpStringConvertible.swift
[636/795] Compiling CustomDump Diff.swift
[637/795] Compiling CustomDump CoreImage.swift
[638/795] Compiling CustomDump CoreLocation.swift
[639/795] Compiling CustomDump CoreMotion.swift
[640/795] Compiling CustomDump Foundation.swift
[641/795] Emitting module OrderedCollections
[642/823] Compiling PerceptionCore Perceptible.swift
[643/823] Compiling PerceptionCore PerceptionChecking.swift
[644/823] Compiling PerceptionCore Unchecked.swift
[645/823] Compiling CustomDump GameKit.swift
[646/823] Compiling CustomDump KeyPath.swift
[647/823] Compiling PerceptionCore _PerceptionRegistrar.swift
[648/823] Compiling CustomDump CoreImage.swift
[649/823] Compiling CustomDump CoreLocation.swift
[650/823] Emitting module PerceptionCore
[651/823] Compiling PerceptionCore PerceptionRegistrar.swift
[652/823] Compiling CustomDump CoreMotion.swift
[653/823] Compiling CustomDump Foundation.swift
[654/833] Compiling PerceptionCore WithPerceptionTracking.swift
[655/833] Emitting module OrderedCollections
[656/852] Compiling RxSwift TakeLast.swift
[657/852] Compiling RxSwift TakeWithPredicate.swift
[658/852] Compiling RxSwift Throttle.swift
[659/852] Compiling RxSwift Timeout.swift
[660/852] Compiling RxSwift Timer.swift
[661/852] Compiling RxSwift ToArray.swift
[662/852] Compiling RxSwift Using.swift
[663/852] Compiling RxSwift VirtualTimeConverterType.swift
[664/852] Compiling RxSwift VirtualTimeScheduler.swift
[665/852] Compiling RxSwift Window.swift
[666/852] Compiling RxSwift WithLatestFrom.swift
[667/852] Compiling RxSwift WithUnretained.swift
[668/852] Compiling RxSwift Zip+Collection.swift
[669/852] Compiling RxSwift Zip+arity.swift
[670/852] Compiling RxSwift Zip.swift
[671/852] Compiling RxSwift resource_bundle_accessor.swift
[672/852] Compiling CasePathsCore Optional+CasePathable.swift
[673/852] Compiling CasePathsCore UncheckedSendable.swift
[674/852] Compiling CasePathsCore Never+CasePathable.swift
[675/852] Compiling CasePathsCore TypeName.swift
[676/852] Compiling CasePathsCore KeyPath+Sendable.swift
[677/882] Compiling CasePathsCore AnyCasePath.swift
[678/882] Compiling CasePathsCore CasePathReflectable.swift
[679/882] Compiling CasePathsCore CasePathable.swift
[680/882] Emitting module CasePathsCore
[681/882] Compiling CasePathsCore CasePathIterable.swift
[682/882] Compiling IdentifiedCollections IdentifiedArray+RandomAccessCollection.swift
[683/882] Compiling IdentifiedCollections IdentifiedArray+RangeReplaceableCollection.swift
[684/883] Compiling CustomDump AnyType.swift
[685/883] Compiling CustomDump CollectionDifference.swift
[686/883] Compiling CustomDump Identifiable.swift
[687/885] Compiling IdentifiedCollections IdentifiedArray+MutableCollection.swift
[688/885] Compiling IdentifiedCollections IdentifiedArray+IdentifiedCollection.swift
[689/885] Compiling IdentifiedCollections IdentifiedArray+Initializers.swift
[690/885] Compiling CasePathsCore Result+CasePathable.swift
[693/885] Compiling IdentifiedCollections IdentifiedArray+ExpressibleByArrayLiteral.swift
[694/885] Compiling IdentifiedCollections IdentifiedArray+Hashable.swift
[695/885] Compiling IdentifiedCollections IdentifiedArray+CustomStringConvertible.swift
[696/885] Compiling IdentifiedCollections IdentifiedArray+Equatable.swift
[697/885] Compiling IdentifiedCollections IdentifiedArray+Insertions.swift
[714/885] Compiling IdentifiedCollections IdentifiedArray+Sendable.swift
[715/885] Compiling IdentifiedCollections IdentifiedArray.swift
[716/885] Compiling IdentifiedCollections IdentifiedArray+CustomDebugStringConvertible.swift
[717/885] Compiling IdentifiedCollections IdentifiedArray+CustomReflectable.swift
[720/885] Compiling CasePathsCore Never+CasePathable.swift
[721/885] Compiling CasePathsCore Optional+CasePathable.swift
[727/886] Compiling IdentifiedCollections IdentifiedCollection.swift
[730/886] Compiling IdentifiedCollections IdentifiedArray+Collection.swift
[731/886] Compiling IdentifiedCollections IdentifiedArray+CollectionAlgorithms.swift
[732/886] Emitting module IdentifiedCollections
[733/886] Compiling IdentifiedCollections Identified.swift
[734/886] Compiling IdentifiedCollections IdentifiedArray+Codable.swift
[735/886] Compiling CasePathsCore UncheckedSendable.swift
[736/886] Compiling CasePathsCore TypeName.swift
[737/886] Compiling CasePathsCore KeyPath+Sendable.swift
[738/886] Compiling CasePathsCore CasePathReflectable.swift
[739/886] Compiling CasePathsCore CasePathIterable.swift
[740/886] Compiling CasePathsCore AnyCasePath.swift
[741/886] Emitting module CasePathsCore
[742/886] Compiling CasePathsCore CasePathable.swift
[748/886] Compiling CustomDump CustomDumpRepresentable.swift
[749/886] Compiling CustomDump CustomDumpStringConvertible.swift
[750/886] Compiling CustomDump Diff.swift
[754/886] Compiling CustomDump Photos.swift
[755/886] Compiling CustomDump Speech.swift
[756/886] Compiling CustomDump StoreKit.swift
[768/892] Compiling Workflow DispatchQueue+Workflow.swift
[769/892] Compiling Workflow Lifetime.swift
[774/894] Compiling Workflow StateMutationSink.swift
[776/905] Emitting module CustomDump
[778/905] Compiling Workflow AnyWorkflow.swift
[779/905] Compiling Workflow AnyWorkflowConvertible.swift
[782/905] Compiling Workflow SubtreeManager.swift
[786/905] Compiling CasePathsCore Result+CasePathable.swift
[787/921] Emitting module IdentifiedCollections
[788/921] Compiling Workflow Sink.swift
[789/921] Compiling Workflow DispatchQueue+Workflow.swift
[790/921] Compiling Workflow Lifetime.swift
[791/921] Compiling Workflow AnyWorkflow.swift
[792/921] Compiling Workflow AnyWorkflowConvertible.swift
[793/921] Compiling Workflow RenderContext.swift
[797/921] Compiling CustomDump XCTAssertDifference.swift
[798/921] Compiling CustomDump XCTAssertNoDifference.swift
[799/921] Compiling IdentifiedCollections IdentifiedCollection.swift
[800/921] Compiling Workflow ApplyContext.swift
[801/921] Compiling Workflow Debugging.swift
[802/921] Compiling Workflow Workflow.swift
[803/921] Compiling Workflow WorkflowAction.swift
[804/921] Compiling Workflow StateMutationSink.swift
[805/921] Compiling Workflow SubtreeManager.swift
[820/921] Compiling Workflow WorkflowHost.swift
[821/921] Compiling Workflow WorkflowNode.swift
[822/921] Compiling Workflow WorkflowLogger.swift
[823/922] Emitting module Workflow
[824/922] Compiling Workflow WorkflowNode.swift
[825/922] Compiling Workflow WorkflowHost.swift
[832/922] Compiling Workflow WorkflowLogger.swift
[851/923] Emitting module Workflow
[852/923] Compiling Workflow WorkflowObserver.swift
[854/986] Compiling WorkflowCombine Logger.swift
[855/986] Compiling WorkflowCombine Worker.swift
[856/986] Compiling WorkflowCombine Publisher+Extensions.swift
[857/986] Compiling WorkflowCombine PublisherWorkflow.swift
[858/986] Emitting module WorkflowCombine
[859/986] Compiling WorkflowRxSwift Worker.swift
[860/986] Compiling WorkflowRxSwift ObservableWorkflow.swift
[861/986] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[862/986] Compiling WorkflowReactiveSwift SignalWorker.swift
[863/986] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
[864/986] Compiling WorkflowReactiveSwift Worker.swift
[865/986] Compiling WorkflowUI UIViewController+Extensions.swift
[866/987] Compiling WorkflowUI ScreenContaining.swift
[867/987] Compiling WorkflowUI ScreenViewController.swift
[868/987] Compiling WorkflowUI Screen.swift
[869/987] Compiling WorkflowUI AnyScreen.swift
[870/987] Compiling WorkflowUI DescribedViewController.swift
[871/987] Emitting module WorkflowReactiveSwift
[872/987] Compiling WorkflowReactiveSwift Logger.swift
[873/987] Compiling WorkflowRxSwift Logger.swift
[874/987] Emitting module WorkflowRxSwift
[875/987] Compiling WorkflowConcurrency Logger.swift
[876/987] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[877/987] Emitting module WorkflowConcurrency
[878/987] Compiling WorkflowConcurrency Worker.swift
[879/987] Emitting module WorkflowRxSwift
[880/987] Compiling WorkflowRxSwift Logger.swift
[881/987] Compiling WorkflowRxSwift ObservableWorkflow.swift
[882/987] Compiling WorkflowRxSwift Worker.swift
[883/987] Compiling WorkflowUI Screen.swift
[884/987] Compiling WorkflowUI ScreenViewController.swift
[885/987] Compiling WorkflowUI DescribedViewController.swift
[886/987] Compiling WorkflowUI ScreenContaining.swift
[887/987] Compiling WorkflowUI WorkflowHostingController.swift
[888/987] Compiling WorkflowUI ModuleExports.swift
[889/987] Compiling WorkflowUI UIViewController+Extensions.swift
[890/987] Compiling WorkflowUI WorkflowUIViewController.swift
[891/987] Compiling WorkflowUI AdaptedEnvironmentScreen.swift
[892/987] Emitting module WorkflowUI
[893/987] Compiling WorkflowUI WorkflowUIEvents.swift
[894/987] Compiling WorkflowUI WorkflowUIObserver.swift
[895/987] Compiling WorkflowUI AnyScreen.swift
[896/988] Emitting module WorkflowUI
[903/1003] Compiling WorkflowUI ViewControllerDescription.swift
[905/1003] Compiling WorkflowReactiveSwift SignalWorker.swift
[906/1003] Compiling WorkflowReactiveSwift Worker.swift
[907/1003] Compiling WorkflowReactiveSwift Logger.swift
[908/1003] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[909/1003] Emitting module WorkflowReactiveSwift
[910/1003] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
[911/1003] Compiling WorkflowCombine PublisherWorkflow.swift
[912/1003] Compiling WorkflowCombine Logger.swift
[913/1003] Emitting module WorkflowCombine
[914/1003] Compiling WorkflowCombine Publisher+Extensions.swift
[915/1003] Compiling WorkflowCombine Worker.swift
[916/1003] Compiling WorkflowConcurrency Logger.swift
[917/1003] Emitting module WorkflowConcurrency
[918/1003] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[919/1003] Compiling WorkflowConcurrency Worker.swift
[920/1003] Emitting module SwiftSyntax
[949/1003] Compiling WorkflowTesting WorkflowRenderTester.swift
[950/1003] Compiling WorkflowTesting WorkflowActionTester.swift
[952/1003] Compiling WorkflowTesting RenderExpectations.swift
[953/1003] Compiling WorkflowTesting RenderTesterResult.swift
[954/1003] Compiling WorkflowTesting WorkflowRenderTester.swift
[955/1003] Compiling WorkflowTesting RenderTesterResult.swift
[956/1003] Compiling WorkflowTesting AppliedAction.swift
[957/1003] Compiling WorkflowTesting RenderExpectations.swift
[958/1003] Emitting module WorkflowTesting
[959/1003] Compiling WorkflowTesting RenderTester+TestContext.swift
[960/1003] Compiling WorkflowTesting AppliedAction.swift
[961/1003] Compiling WorkflowTesting RenderTester+TestContext.swift
[962/1003] Emitting module WorkflowTesting
[963/1025] Compiling WorkflowConcurrencyTesting WorkerTesting.swift
[964/1025] Emitting module WorkflowRxSwiftTesting
[965/1025] Emitting module WorkflowCombineTesting
[966/1025] Emitting module WorkflowReactiveSwiftTesting
[967/1025] Emitting module WorkflowConcurrencyTesting
[968/1025] Compiling WorkflowCombineTesting PublisherTesting.swift
[969/1025] Compiling WorkflowCombineTesting WorkerTesting.swift
[970/1025] Emitting module WorkflowCombineTesting
[971/1025] Compiling WorkflowConcurrencyTesting WorkerTesting.swift
[972/1025] Emitting module WorkflowConcurrencyTesting
[973/1025] Compiling WorkflowRxSwiftTesting ObservableTesting.swift
[974/1025] Compiling WorkflowRxSwiftTesting WorkerTesting.swift
[975/1025] Emitting module WorkflowRxSwiftTesting
[976/1025] Compiling WorkflowRxSwiftTesting ObservableTesting.swift
[977/1025] Compiling WorkflowRxSwiftTesting WorkerTesting.swift
[978/1025] Compiling WorkflowReactiveSwiftTesting SignalProducerWorkflowTesting.swift
[979/1025] Compiling WorkflowReactiveSwiftTesting WorkerTesting.swift
[980/1025] Emitting module WorkflowReactiveSwiftTesting
[981/1025] Compiling WorkflowCombineTesting PublisherTesting.swift
[982/1025] Compiling WorkflowCombineTesting WorkerTesting.swift
[983/1025] Compiling WorkflowReactiveSwiftTesting WorkerTesting.swift
[984/1025] Compiling WorkflowReactiveSwiftTesting SignalProducerWorkflowTesting.swift
[1020/1083] Compiling SwiftDiagnostics Message.swift
[1021/1084] Emitting module SwiftDiagnostics
[1022/1084] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[1023/1084] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[1024/1084] Compiling SwiftDiagnostics Diagnostic.swift
[1025/1084] Compiling SwiftDiagnostics Convenience.swift
[1026/1084] Compiling SwiftDiagnostics Note.swift
[1027/1084] Compiling SwiftBasicFormat Syntax+Extensions.swift
[1028/1084] Compiling SwiftBasicFormat InferIndentation.swift
[1029/1084] Compiling SwiftDiagnostics FixIt.swift
[1030/1084] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[1031/1084] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[1032/1084] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[1033/1084] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[1034/1084] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[1035/1084] Emitting module SwiftBasicFormat
[1036/1084] Compiling SwiftBasicFormat BasicFormat.swift
[1037/1084] Compiling SwiftParser UnicodeScalarExtensions.swift
[1038/1084] Compiling SwiftParser Lookahead.swift
[1039/1084] Compiling SwiftParser LoopProgressCondition.swift
[1040/1084] Compiling SwiftParser Modifiers.swift
[1041/1084] Compiling SwiftParser Names.swift
[1042/1088] Compiling SwiftParser TopLevel.swift
[1043/1088] Compiling SwiftParser TriviaParser.swift
[1044/1088] Compiling SwiftParser Types.swift
[1045/1088] Compiling SwiftParser ExperimentalFeatures.swift
[1046/1088] Emitting module SwiftParser
[1047/1088] Compiling SwiftParser StringLiterals.swift
[1048/1088] Compiling SwiftParser SwiftParserCompatibility.swift
[1049/1088] Compiling SwiftParser SwiftVersion.swift
[1050/1088] Compiling SwiftParser SyntaxUtils.swift
[1051/1088] Compiling SwiftParser TokenConsumer.swift
[1052/1088] Compiling SwiftParser TokenPrecedence.swift
[1053/1088] Compiling SwiftParser TokenSpec.swift
[1054/1088] Compiling SwiftParser TokenSpecSet.swift
[1055/1088] Compiling SwiftParser Recovery.swift
[1056/1088] Compiling SwiftParser Specifiers.swift
[1057/1088] Compiling SwiftParser Statements.swift
[1058/1088] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[1059/1088] Compiling SwiftParser Nominals.swift
[1060/1088] Compiling SwiftParser Parameters.swift
[1061/1088] Compiling SwiftParser ParseSourceFile.swift
[1062/1088] Compiling SwiftParser Parser.swift
[1063/1088] Compiling SwiftParser Patterns.swift
[1064/1088] Compiling SwiftParser Attributes.swift
[1065/1088] Compiling SwiftParser Availability.swift
[1066/1088] Compiling SwiftParser CharacterInfo.swift
[1067/1088] Compiling SwiftParser CollectionNodes+Parsable.swift
[1068/1088] Compiling SwiftParser Declarations.swift
[1069/1088] Compiling SwiftParser Directives.swift
[1070/1088] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[1071/1088] Compiling SwiftParser Expressions.swift
[1072/1088] Compiling SwiftParser IncrementalParseTransition.swift
[1073/1088] Compiling SwiftParser IsValidIdentifier.swift
[1074/1088] Compiling SwiftParser Cursor.swift
[1075/1088] Compiling SwiftParser Lexeme.swift
[1076/1088] Compiling SwiftParser LexemeSequence.swift
[1077/1088] Compiling SwiftParser Lexer.swift
[1078/1088] Compiling SwiftParser RegexLiteralLexer.swift
[1079/1088] Compiling SwiftParser IsLexerClassified.swift
[1080/1088] Compiling SwiftParser LayoutNodes+Parsable.swift
[1081/1088] Compiling SwiftParser Parser+TokenSpecSet.swift
[1082/1088] Compiling SwiftParser TokenSpecStaticMembers.swift
[1083/1111] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[1084/1112] Compiling SwiftOperators PrecedenceGroup.swift
[1085/1113] Compiling SwiftOperators PrecedenceGraph.swift
[1086/1113] Compiling SwiftOperators OperatorError+Diagnostics.swift
[1087/1113] Compiling SwiftOperators Operator.swift
[1088/1113] Compiling SwiftOperators OperatorTable.swift
[1089/1113] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[1090/1113] Emitting module SwiftOperators
[1091/1113] Compiling SwiftOperators OperatorTable+Semantics.swift
[1092/1113] Compiling SwiftOperators SyntaxSynthesis.swift
[1093/1113] Compiling SwiftOperators OperatorTable+Defaults.swift
[1094/1113] Compiling SwiftOperators OperatorError.swift
[1095/1113] Compiling SwiftOperators OperatorTable+Folding.swift
[1096/1113] Compiling SwiftParserDiagnostics Utils.swift
[1097/1113] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[1098/1113] Compiling SwiftParserDiagnostics PresenceUtils.swift
[1099/1113] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[1100/1113] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[1101/1113] Compiling SwiftParserDiagnostics MissingNodesError.swift
[1102/1113] Compiling SwiftParserDiagnostics MissingTokenError.swift
[1103/1113] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[1104/1113] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[1105/1113] Emitting module SwiftParserDiagnostics
[1106/1113] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[1107/1113] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[1108/1128] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[1109/1129] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[1110/1129] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[1111/1129] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[1112/1129] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[1113/1129] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[1114/1129] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[1115/1129] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[1116/1129] Compiling SwiftSyntaxBuilder Indenter.swift
[1117/1129] Compiling SwiftSyntaxBuilder ListBuilder.swift
[1118/1129] Emitting module SwiftSyntaxBuilder
[1119/1129] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[1120/1129] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[1121/1129] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[1122/1129] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[1123/1129] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[1124/1147] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[1125/1147] Compiling SwiftSyntaxMacros Macro+Format.swift
[1126/1147] Compiling SwiftSyntaxMacros PreambleMacro.swift
[1127/1147] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[1128/1147] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[1129/1147] Compiling SwiftSyntaxMacros AttachedMacro.swift
[1130/1147] Compiling SwiftSyntaxMacros BodyMacro.swift
[1131/1147] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[1132/1147] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[1133/1147] Compiling SwiftSyntaxMacros MemberMacro.swift
[1134/1147] Compiling SwiftSyntaxMacros PeerMacro.swift
[1135/1147] Compiling SwiftSyntaxMacros Macro.swift
[1136/1147] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[1137/1148] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[1138/1148] Compiling SwiftSyntaxMacros AccessorMacro.swift
[1139/1148] Emitting module SwiftSyntaxMacros
[1140/1148] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[1141/1148] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[1142/1148] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[1143/1158] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[1144/1158] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[1145/1158] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[1146/1158] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[1147/1158] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[1148/1158] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[1149/1158] Emitting module SwiftSyntaxMacroExpansion
[1150/1158] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[1151/1158] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[1152/1158] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[1153/1170] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[1154/1170] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[1155/1170] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[1156/1170] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[1157/1170] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[1158/1171] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[1159/1171] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[1160/1171] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[1161/1171] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[1162/1171] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[1163/1171] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[1164/1171] Emitting module SwiftCompilerPluginMessageHandling
[1165/1171] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[1166/1173] Emitting module SwiftCompilerPlugin
[1167/1173] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[1168/1186] Compiling CasePathsMacros Plugin.swift
[1169/1186] Compiling WorkflowSwiftUIMacros Plugins.swift
[1170/1186] Compiling PerceptionMacros Availability.swift
[1171/1186] Compiling PerceptionMacros Plugins.swift
[1172/1186] Compiling PerceptionMacros Extensions.swift
[1173/1186] Emitting module PerceptionMacros
[1174/1186] Compiling PerceptionMacros PerceptibleMacro.swift
[1174/1186] Write Objects.LinkFileList
[1176/1186] Compiling WorkflowSwiftUIMacros Extensions.swift
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:47:21: warning: 'as' is deprecated: This cast will always succeed
 45 |     func accessorsMatching(_ predicate: (TokenKind) -> Bool) -> [AccessorDeclSyntax] {
 46 |         let patternBindings = bindings.compactMap { binding in
 47 |             binding.as(PatternBindingSyntax.self)
    |                     `- warning: 'as' is deprecated: This cast will always succeed
 48 |         }
 49 |         let accessors: [AccessorDeclListSyntax.Element] = patternBindings.compactMap { patternBinding in
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:58:39: warning: 'as' is deprecated: This cast will always succeed
 56 |         }.flatMap { $0 }
 57 |         return accessors.compactMap { accessor in
 58 |             guard let decl = accessor.as(AccessorDeclSyntax.self) else {
    |                                       `- warning: 'as' is deprecated: This cast will always succeed
 59 |                 return nil
 60 |             }
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:236:38: warning: 'as' is deprecated: This cast will always succeed
234 |         var standins = [FunctionDeclSyntax.SignatureStandin]()
235 |         for member in memberBlock.members {
236 |             if let function = member.as(MemberBlockItemSyntax.self)?.decl.as(FunctionDeclSyntax.self) {
    |                                      `- warning: 'as' is deprecated: This cast will always succeed
237 |                 standins.append(function.signatureStandin)
238 |             }
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:245:38: warning: 'as' is deprecated: This cast will always succeed
243 |     func hasMemberFunction(equvalentTo other: FunctionDeclSyntax) -> Bool {
244 |         for member in memberBlock.members {
245 |             if let function = member.as(MemberBlockItemSyntax.self)?.decl.as(FunctionDeclSyntax.self) {
    |                                      `- warning: 'as' is deprecated: This cast will always succeed
246 |                 if function.isEquivalent(to: other) {
247 |                     return true
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:256:38: warning: 'as' is deprecated: This cast will always succeed
254 |     func hasMemberProperty(equivalentTo other: VariableDeclSyntax) -> Bool {
255 |         for member in memberBlock.members {
256 |             if let variable = member.as(MemberBlockItemSyntax.self)?.decl.as(VariableDeclSyntax.self) {
    |                                      `- warning: 'as' is deprecated: This cast will always succeed
257 |                 if variable.isEquivalent(to: other) {
258 |                     return true
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:267:42: warning: 'as' is deprecated: This cast will always succeed
265 |     var definedVariables: [VariableDeclSyntax] {
266 |         memberBlock.members.compactMap { member in
267 |             if let variableDecl = member.as(MemberBlockItemSyntax.self)?.decl.as(VariableDeclSyntax.self) {
    |                                          `- warning: 'as' is deprecated: This cast will always succeed
268 |                 return variableDecl
269 |             }
[1177/1186] Emitting module WorkflowSwiftUIMacros
[1178/1186] Compiling WorkflowSwiftUIMacros ObservableStateMacro.swift
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/ObservableStateMacro.swift:454:30: warning: 'MacroExpansionErrorMessage' is deprecated: MacroExpansionErrorMessage has been moved to the SwiftSyntaxMacros module
452 |                 Diagnostic(
453 |                     node: attribute,
454 |                     message: MacroExpansionErrorMessage("'@\(name)' cannot be used in '@ObservableState'"),
    |                              `- warning: 'MacroExpansionErrorMessage' is deprecated: MacroExpansionErrorMessage has been moved to the SwiftSyntaxMacros module
455 |                     fixIt: .replace(
456 |                         message: MacroExpansionFixItMessage("Use '@\(rename)' instead"),
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/ObservableStateMacro.swift:456:34: warning: 'MacroExpansionFixItMessage' is deprecated: MacroExpansionFixItMessage has been moved to the SwiftSyntaxMacros module
454 |                     message: MacroExpansionErrorMessage("'@\(name)' cannot be used in '@ObservableState'"),
455 |                     fixIt: .replace(
456 |                         message: MacroExpansionFixItMessage("Use '@\(rename)' instead"),
    |                                  `- warning: 'MacroExpansionFixItMessage' is deprecated: MacroExpansionFixItMessage has been moved to the SwiftSyntaxMacros module
457 |                         oldNode: attribute,
458 |                         newNode: attribute.with(
[1179/1186] Compiling WorkflowSwiftUIMacros Availability.swift
[1179/1186] Write Objects.LinkFileList
[1181/1186] Emitting module CasePathsMacros
[1182/1186] Compiling CasePathsMacros CasePathableMacro.swift
[1182/1186] Write Objects.LinkFileList
[1183/1186] Linking WorkflowSwiftUIMacros-tool
[1184/1186] Linking PerceptionMacros-tool
[1185/1186] Linking CasePathsMacros-tool
[1187/1206] Compiling CasePaths XCTestSupport.swift
[1189/1206] Compiling Perception Exports.swift
[1190/1206] Compiling Perception Macros.swift
[1191/1206] Emitting module Perception
[1192/1206] Compiling Perception Exports.swift
[1193/1206] Compiling Perception Macros.swift
[1194/1206] Emitting module Perception
[1195/1206] Compiling CasePaths LockIsolated.swift
[1196/1206] Compiling CasePaths Exports.swift
[1197/1206] Compiling CasePaths Deprecations.swift
[1198/1206] Compiling CasePaths EnumReflection.swift
[1199/1206] Compiling CasePaths Macros.swift
[1200/1206] Compiling CasePaths LockIsolated.swift
[1201/1206] Compiling CasePaths Exports.swift
[1202/1206] Compiling CasePaths Deprecations.swift
[1203/1206] Compiling CasePaths EnumReflection.swift
[1204/1206] Compiling CasePaths Macros.swift
[1205/1206] Emitting module CasePaths
[1207/1238] Compiling WorkflowSwiftUI UIViewController+Orientation.swift
[1208/1239] Compiling WorkflowSwiftUI Workflow+Preview.swift
[1209/1239] Compiling WorkflowSwiftUI Store+Preview.swift
[1210/1239] Compiling WorkflowSwiftUI ActionModel.swift
[1211/1239] Compiling WorkflowSwiftUI Bindable+Store.swift
[1212/1239] Compiling WorkflowSwiftUI Store.swift
[1213/1239] Compiling WorkflowSwiftUI ObservableScreen+Preview.swift
[1214/1239] Compiling WorkflowSwiftUI ObservableScreen.swift
[1215/1239] Compiling WorkflowSwiftUI ObservationStateRegistrar.swift
[1216/1239] Compiling WorkflowSwiftUI Exports.swift
[1217/1239] Compiling WorkflowSwiftUI AreOrderedSetsDuplicates.swift
[1218/1239] Compiling WorkflowSwiftUI ObservableState.swift
[1219/1239] Compiling WorkflowSwiftUI RenderContext+ObservableModel.swift
[1220/1239] Compiling WorkflowSwiftUI StateAccessor.swift
[1221/1239] Compiling WorkflowSwiftUI UIViewController+Orientation.swift
[1226/1239] Compiling WorkflowSwiftUI Store+Preview.swift
[1229/1239] Compiling WorkflowSwiftUI Macros.swift
[1230/1239] Compiling WorkflowSwiftUI ObservableModel.swift
[1233/1239] Compiling WorkflowSwiftUI Store.swift
[1237/1240] Emitting module WorkflowSwiftUI
[1240/1240] Compiling WorkflowSwiftUI Workflow+Preview.swift
Build complete! (33.61s)
warning: 'spi-builder-workspace': dependency 'xctest-dynamic-overlay' is not used by any target
Build complete.
{
  "dependencies" : [
    {
      "identity" : "reactiveswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "7.1.1",
            "upper_bound" : "8.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ReactiveCocoa/ReactiveSwift.git"
    },
    {
      "identity" : "rxswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.6.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ReactiveX/RxSwift.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "509.0.0",
            "upper_bound" : "601.0.0-prerelease"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax"
    },
    {
      "identity" : "swift-case-paths",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.5",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-case-paths"
    },
    {
      "identity" : "swift-identified-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-identified-collections"
    },
    {
      "identity" : "swift-macro-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-macro-testing"
    },
    {
      "identity" : "swift-perception",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-perception"
    },
    {
      "identity" : "swift-custom-dump",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-custom-dump"
    },
    {
      "identity" : "xctest-dynamic-overlay",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/xctest-dynamic-overlay"
    }
  ],
  "manifest_display_name" : "Workflow",
  "name" : "Workflow",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "Workflow",
      "targets" : [
        "Workflow"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowTesting",
      "targets" : [
        "WorkflowTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowUI",
      "targets" : [
        "WorkflowUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowSwiftUI",
      "targets" : [
        "WorkflowSwiftUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowReactiveSwift",
      "targets" : [
        "WorkflowReactiveSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowReactiveSwiftTesting",
      "targets" : [
        "WorkflowReactiveSwiftTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowRxSwift",
      "targets" : [
        "WorkflowRxSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowRxSwiftTesting",
      "targets" : [
        "WorkflowRxSwiftTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowCombine",
      "targets" : [
        "WorkflowCombine"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowCombineTesting",
      "targets" : [
        "WorkflowCombineTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowConcurrency",
      "targets" : [
        "WorkflowConcurrency"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowConcurrencyTesting",
      "targets" : [
        "WorkflowConcurrencyTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ViewEnvironment",
      "targets" : [
        "ViewEnvironment"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ViewEnvironmentUI",
      "targets" : [
        "ViewEnvironmentUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "WorkflowSwiftUIMacros",
      "targets" : [
        "WorkflowSwiftUIMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "WorkflowUITests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowUITests",
      "path" : "WorkflowUI/Tests",
      "sources" : [
        "AdaptedEnvironmentScreenTests.swift",
        "DescribedViewControllerTests.swift",
        "ScreenContainingTests.swift",
        "UIViewControllerExtensionTests.swift",
        "ViewControllerDescriptionTests.swift",
        "WorkflowHostingControllerTests.swift",
        "WorkflowUIObservationTestCase.swift",
        "WorkflowUIViewControllerTests.swift",
        "XCTestCase+Extensions.swift"
      ],
      "target_dependencies" : [
        "WorkflowUI",
        "WorkflowReactiveSwift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowUI",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowUI",
      "path" : "WorkflowUI/Sources",
      "product_memberships" : [
        "WorkflowUI",
        "WorkflowSwiftUI"
      ],
      "sources" : [
        "Hosting/WorkflowHostingController.swift",
        "ModuleExports.swift",
        "Observation/WorkflowUIEvents.swift",
        "Observation/WorkflowUIObserver.swift",
        "Observation/WorkflowUIViewController.swift",
        "Screen/AdaptedEnvironmentScreen.swift",
        "Screen/AnyScreen/AnyScreen.swift",
        "Screen/Screen.swift",
        "Screen/ScreenContaining.swift",
        "Screen/ScreenViewController.swift",
        "ViewControllerDescription/DescribedViewController.swift",
        "ViewControllerDescription/UIViewController+Extensions.swift",
        "ViewControllerDescription/ViewControllerDescription.swift"
      ],
      "target_dependencies" : [
        "Workflow",
        "ViewEnvironment",
        "ViewEnvironmentUI"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowTests",
      "path" : "Workflow/Tests",
      "sources" : [
        "AnyWorkflowActionTests.swift",
        "AnyWorkflowTests.swift",
        "ApplyContextTests.swift",
        "ConcurrencyTests.swift",
        "DebuggingTests.swift",
        "HostContextTests.swift",
        "PerformanceTests.swift",
        "StateMutationSinkTests.swift",
        "SubtreeManagerTests.swift",
        "TestUtilities.swift",
        "WorkflowHostTests.swift",
        "WorkflowNodeTests.swift",
        "WorkflowObserverTests.swift"
      ],
      "target_dependencies" : [
        "Workflow"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowTestingTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowTestingTests",
      "path" : "WorkflowTesting/Tests",
      "sources" : [
        "TestingFrameworkCompatibilityTests.swift",
        "WorkflowActionTesterTests.swift",
        "WorkflowRenderTesterFailureTests.swift",
        "WorkflowRenderTesterTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowTesting",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowTesting",
      "path" : "WorkflowTesting/Sources",
      "product_dependencies" : [
        "CustomDump"
      ],
      "product_memberships" : [
        "WorkflowTesting",
        "WorkflowReactiveSwiftTesting",
        "WorkflowRxSwiftTesting",
        "WorkflowCombineTesting",
        "WorkflowConcurrencyTesting"
      ],
      "sources" : [
        "Internal/AppliedAction.swift",
        "Internal/RenderExpectations.swift",
        "Internal/RenderTester+TestContext.swift",
        "RenderTesterResult.swift",
        "WorkflowActionTester.swift",
        "WorkflowRenderTester.swift"
      ],
      "target_dependencies" : [
        "Workflow"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowSwiftUITests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowSwiftUITests",
      "path" : "WorkflowSwiftUI/Tests",
      "sources" : [
        "Derived/ObservableStateTests.swift",
        "NestedStoreTests.swift",
        "ObservableScreenTests.swift",
        "PreferredContentSizeTests.swift",
        "StoreTests.swift",
        "XCTestCase+AppHost.swift"
      ],
      "target_dependencies" : [
        "WorkflowSwiftUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowSwiftUIMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowSwiftUIMacrosTests",
      "path" : "WorkflowSwiftUIMacros/Tests",
      "product_dependencies" : [
        "MacroTesting"
      ],
      "sources" : [
        "Derived/ObservableStateMacroTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowSwiftUIMacros"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowSwiftUIMacros",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowSwiftUIMacros",
      "path" : "WorkflowSwiftUIMacros/Sources",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "WorkflowSwiftUI",
        "WorkflowSwiftUIMacros"
      ],
      "sources" : [
        "Derived/Availability.swift",
        "Derived/Extensions.swift",
        "Derived/ObservableStateMacro.swift",
        "Plugins.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "WorkflowSwiftUI",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowSwiftUI",
      "path" : "WorkflowSwiftUI/Sources",
      "product_dependencies" : [
        "CasePaths",
        "IdentifiedCollections",
        "Perception"
      ],
      "product_memberships" : [
        "WorkflowSwiftUI"
      ],
      "sources" : [
        "ActionModel.swift",
        "Bindable+Store.swift",
        "Derived/AreOrderedSetsDuplicates.swift",
        "Derived/ObservableState.swift",
        "Derived/ObservationStateRegistrar.swift",
        "Exports.swift",
        "Macros.swift",
        "ObservableModel.swift",
        "ObservableScreen+Preview.swift",
        "ObservableScreen.swift",
        "RenderContext+ObservableModel.swift",
        "StateAccessor.swift",
        "Store+Preview.swift",
        "Store.swift",
        "UIViewController+Orientation.swift",
        "Workflow+Preview.swift"
      ],
      "target_dependencies" : [
        "Workflow",
        "WorkflowUI",
        "WorkflowSwiftUIMacros"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowRxSwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowRxSwiftTests",
      "path" : "WorkflowRxSwift/Tests",
      "sources" : [
        "ObservableTests.swift",
        "Rx+ReactiveWorkers.swift",
        "WorkerTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowRxSwiftTesting",
        "WorkflowReactiveSwift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowRxSwiftTestingTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowRxSwiftTestingTests",
      "path" : "WorkflowRxSwift/TestingTests",
      "sources" : [
        "ObservableTests.swift",
        "TestingTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowRxSwiftTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowRxSwiftTesting",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowRxSwiftTesting",
      "path" : "WorkflowRxSwift/Testing",
      "product_memberships" : [
        "WorkflowRxSwiftTesting"
      ],
      "sources" : [
        "ObservableTesting.swift",
        "WorkerTesting.swift"
      ],
      "target_dependencies" : [
        "WorkflowRxSwift",
        "WorkflowTesting"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowRxSwift",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowRxSwift",
      "path" : "WorkflowRxSwift/Sources",
      "product_dependencies" : [
        "RxSwift"
      ],
      "product_memberships" : [
        "WorkflowRxSwift",
        "WorkflowRxSwiftTesting"
      ],
      "sources" : [
        "Logger.swift",
        "ObservableWorkflow.swift",
        "Worker.swift"
      ],
      "target_dependencies" : [
        "Workflow"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowReactiveSwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowReactiveSwiftTests",
      "path" : "WorkflowReactiveSwift/Tests",
      "sources" : [
        "SignalProducerTests.swift",
        "SignalTests.swift",
        "WorkerTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowReactiveSwiftTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowReactiveSwiftTestingTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowReactiveSwiftTestingTests",
      "path" : "WorkflowReactiveSwift/TestingTests",
      "sources" : [
        "SignalProducerTests.swift",
        "TestingTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowReactiveSwiftTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowReactiveSwiftTesting",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowReactiveSwiftTesting",
      "path" : "WorkflowReactiveSwift/Testing",
      "product_memberships" : [
        "WorkflowReactiveSwiftTesting"
      ],
      "sources" : [
        "SignalProducerWorkflowTesting.swift",
        "WorkerTesting.swift"
      ],
      "target_dependencies" : [
        "WorkflowReactiveSwift",
        "WorkflowTesting"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowReactiveSwift",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowReactiveSwift",
      "path" : "WorkflowReactiveSwift/Sources",
      "product_dependencies" : [
        "ReactiveSwift"
      ],
      "product_memberships" : [
        "WorkflowReactiveSwift",
        "WorkflowReactiveSwiftTesting"
      ],
      "sources" : [
        "Logger.swift",
        "QueueScheduler+Workflow.swift",
        "SignalProducerWorkflow.swift",
        "SignalWorker.swift",
        "Worker.swift"
      ],
      "target_dependencies" : [
        "Workflow"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowConcurrencyTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowConcurrencyTests",
      "path" : "WorkflowConcurrency/Tests",
      "sources" : [
        "AsyncOperationWorkerTests.swift",
        "WorkerTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowConcurrency",
        "Workflow",
        "WorkflowTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowConcurrencyTestingTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowConcurrencyTestingTests",
      "path" : "WorkflowConcurrency/TestingTests",
      "sources" : [
        "TestingTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowConcurrencyTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowConcurrencyTesting",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowConcurrencyTesting",
      "path" : "WorkflowConcurrency/Testing",
      "product_memberships" : [
        "WorkflowConcurrencyTesting"
      ],
      "sources" : [
        "WorkerTesting.swift"
      ],
      "target_dependencies" : [
        "WorkflowConcurrency",
        "WorkflowTesting"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowConcurrency",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowConcurrency",
      "path" : "WorkflowConcurrency/Sources",
      "product_memberships" : [
        "WorkflowConcurrency",
        "WorkflowConcurrencyTesting"
      ],
      "sources" : [
        "AsyncOperationWorker.swift",
        "Logger.swift",
        "Worker.swift"
      ],
      "target_dependencies" : [
        "Workflow"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowCombineTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowCombineTests",
      "path" : "WorkflowCombine/Tests",
      "sources" : [
        "PublisherTests.swift",
        "WorkerTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowCombineTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowCombineTestingTests",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowCombineTestingTests",
      "path" : "WorkflowCombine/TestingTests",
      "sources" : [
        "PublisherTests.swift",
        "TestingTests.swift"
      ],
      "target_dependencies" : [
        "WorkflowCombineTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WorkflowCombineTesting",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowCombineTesting",
      "path" : "WorkflowCombine/Testing",
      "product_memberships" : [
        "WorkflowCombineTesting"
      ],
      "sources" : [
        "PublisherTesting.swift",
        "WorkerTesting.swift"
      ],
      "target_dependencies" : [
        "WorkflowCombine",
        "WorkflowTesting"
      ],
      "type" : "library"
    },
    {
      "c99name" : "WorkflowCombine",
      "module_type" : "SwiftTarget",
      "name" : "WorkflowCombine",
      "path" : "WorkflowCombine/Sources",
      "product_memberships" : [
        "WorkflowCombine",
        "WorkflowCombineTesting"
      ],
      "sources" : [
        "Logger.swift",
        "Publisher+Extensions.swift",
        "PublisherWorkflow.swift",
        "Worker.swift"
      ],
      "target_dependencies" : [
        "Workflow"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Workflow",
      "module_type" : "SwiftTarget",
      "name" : "Workflow",
      "path" : "Workflow/Sources",
      "product_dependencies" : [
        "ReactiveSwift"
      ],
      "product_memberships" : [
        "Workflow",
        "WorkflowTesting",
        "WorkflowUI",
        "WorkflowSwiftUI",
        "WorkflowReactiveSwift",
        "WorkflowReactiveSwiftTesting",
        "WorkflowRxSwift",
        "WorkflowRxSwiftTesting",
        "WorkflowCombine",
        "WorkflowCombineTesting",
        "WorkflowConcurrency",
        "WorkflowConcurrencyTesting"
      ],
      "sources" : [
        "AnyWorkflow.swift",
        "AnyWorkflowConvertible.swift",
        "ApplyContext.swift",
        "Debugging.swift",
        "DispatchQueue+Workflow.swift",
        "Lifetime.swift",
        "RenderContext.swift",
        "Sink.swift",
        "StateMutationSink.swift",
        "SubtreeManager.swift",
        "Workflow.swift",
        "WorkflowAction.swift",
        "WorkflowHost.swift",
        "WorkflowLogger.swift",
        "WorkflowNode.swift",
        "WorkflowObserver.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ViewEnvironmentUI",
      "module_type" : "SwiftTarget",
      "name" : "ViewEnvironmentUI",
      "path" : "ViewEnvironmentUI/Sources",
      "product_memberships" : [
        "WorkflowUI",
        "WorkflowSwiftUI",
        "ViewEnvironmentUI"
      ],
      "sources" : [
        "UIView+ViewEnvironmentPropagating.swift",
        "UIViewController+ViewEnvironmentPropagating.swift",
        "ViewEnvironmentObserving.swift",
        "ViewEnvironmentPropagating.swift",
        "ViewEnvironmentPropagationNode.swift"
      ],
      "target_dependencies" : [
        "ViewEnvironment"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ViewEnvironment",
      "module_type" : "SwiftTarget",
      "name" : "ViewEnvironment",
      "path" : "ViewEnvironment/Sources",
      "product_memberships" : [
        "WorkflowUI",
        "WorkflowSwiftUI",
        "ViewEnvironment",
        "ViewEnvironmentUI"
      ],
      "sources" : [
        "EnvironmentValues+ViewEnvironment.swift",
        "ViewEnvironment.swift",
        "ViewEnvironmentKey.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.