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 v4.0.1 (53fc18), with Swift 6.1 for macOS (SPM) on 31 May 2025 19:21:38 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

[744/881] Compiling RxSwift Timer.swift
[745/881] Compiling RxSwift ToArray.swift
[746/881] Compiling RxSwift Using.swift
[747/881] Compiling RxSwift VirtualTimeConverterType.swift
[748/881] Compiling RxSwift VirtualTimeScheduler.swift
[749/881] Compiling RxSwift Window.swift
[750/881] Compiling RxSwift WithLatestFrom.swift
[751/881] Compiling RxSwift WithUnretained.swift
[752/881] Compiling RxSwift Zip+Collection.swift
[753/881] Compiling RxSwift Zip+arity.swift
[754/881] Compiling RxSwift Zip.swift
[755/881] Compiling RxSwift resource_bundle_accessor.swift
[772/963] Compiling Workflow WorkflowHost.swift
[773/963] Compiling Workflow WorkflowNode.swift
[774/963] Compiling CustomDump UserNotificationsUI.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
[775/963] Compiling CustomDump CustomDumpReflectable.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
[776/963] Compiling CustomDump Identifiable.swift
[777/963] Compiling CustomDump Dump.swift
[778/963] Compiling CustomDump ExpectDifference.swift
[779/963] Compiling CustomDump ExpectNoDifference.swift
[780/963] Compiling CustomDump CoreImage.swift
[781/963] Compiling CustomDump CoreLocation.swift
[782/963] Compiling CustomDump AnyType.swift
[783/963] Compiling CustomDump CollectionDifference.swift
[784/963] 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.
[785/963] Compiling CustomDump CoreMotion.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(
[786/963] Compiling CustomDump UserNotifications.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(
[787/963] 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 |
[788/964] Compiling Workflow WorkflowNode.swift
[789/964] 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 |
[790/965] 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
[791/965] 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
[792/965] 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/965] 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
[794/965] 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
[795/965] 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
[796/965] 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
[797/966] 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
[798/966] 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
[799/966] 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
[806/966] Compiling Workflow WorkflowHost.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
/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
/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/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(
[813/966] 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.
[814/966] 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.
[815/966] 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
[816/966] 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.
[817/986] Compiling WorkflowRxSwift ObservableWorkflow.swift
[818/986] 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 |
[819/986] 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 |
[820/986] Compiling WorkflowRxSwift Worker.swift
[821/986] 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
[822/986] 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
[823/986] 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
[824/986] 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
[825/987] Compiling WorkflowReactiveSwift SignalWorker.swift
[826/987] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[827/987] 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",
[828/987] 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",
[829/987] Compiling WorkflowReactiveSwift Worker.swift
[830/987] 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 |
[831/991] 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
[832/991] 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
[833/991] 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
[834/991] 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
[835/991] 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
[836/991] 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
[837/991] 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
[838/997] 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
[839/997] Compiling WorkflowRxSwift ObservableWorkflow.swift
[840/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 |
[841/1001] Compiling WorkflowRxSwift Worker.swift
[842/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 |
[843/1001] Compiling WorkflowReactiveSwift SignalWorker.swift
[844/1001] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[845/1001] 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 |
[846/1001] 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",
[847/1001] Compiling WorkflowReactiveSwift Worker.swift
[848/1001] 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",
[849/1010] Compiling WorkflowConcurrency Logger.swift
[850/1010] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[851/1010] Emitting module WorkflowConcurrency
[852/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 {
[853/1010] Emitting module WorkflowConcurrency
[854/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 {
[855/1015] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[856/1015] Compiling WorkflowConcurrency Logger.swift
[857/1015] Emitting module WorkflowCombine
[858/1015] Compiling WorkflowCombine PublisherWorkflow.swift
[859/1015] Compiling WorkflowCombine Publisher+Extensions.swift
[860/1015] Compiling WorkflowCombine Logger.swift
[861/1015] Compiling WorkflowCombine Worker.swift
[862/1015] Compiling WorkflowCombine Publisher+Extensions.swift
[863/1015] Compiling WorkflowCombine Logger.swift
[864/1015] Emitting module WorkflowCombine
[865/1015] Compiling WorkflowCombine PublisherWorkflow.swift
[866/1015] Compiling WorkflowCombine Worker.swift
[867/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
[868/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.
/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.
[870/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
[871/1027] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[873/1027] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[874/1027] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.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/1027] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[877/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 |
[878/1027] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[879/1027] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[880/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 |
[881/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 |
[882/1027] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[883/1053] Compiling WorkflowUI Screen.swift
[884/1054] Compiling WorkflowUI DescribedViewController.swift
[885/1054] Compiling WorkflowUI UIViewController+Extensions.swift
[886/1054] Compiling WorkflowUI ScreenContaining.swift
[887/1054] Compiling WorkflowUI ScreenViewController.swift
[888/1054] Compiling WorkflowUI Screen.swift
[889/1054] Compiling WorkflowUI AnyScreen.swift
[890/1054] Compiling WorkflowUI ScreenViewController.swift
[891/1054] Compiling WorkflowUI ScreenContaining.swift
[892/1054] Compiling WorkflowUI WorkflowUIViewController.swift
[893/1054] Compiling WorkflowUI AdaptedEnvironmentScreen.swift
[894/1054] Compiling WorkflowUI WorkflowUIEvents.swift
[895/1054] Compiling WorkflowUI WorkflowUIObserver.swift
[896/1054] Emitting module WorkflowUI
[897/1054] Compiling WorkflowUI WorkflowHostingController.swift
[898/1054] Compiling WorkflowUI ModuleExports.swift
[899/1054] Compiling WorkflowUI DescribedViewController.swift
[900/1054] Compiling WorkflowUI UIViewController+Extensions.swift
[901/1055] Compiling WorkflowUI AnyScreen.swift
[904/1055] Emitting module WorkflowUI
[909/1055] Compiling WorkflowUI ViewControllerDescription.swift
[910/1055] Compiling PerceptionCore PerceptionTracking.swift
[911/1055] Compiling PerceptionCore PerceptionRegistrar.swift
[912/1055] Compiling WorkflowUI ViewControllerDescription.swift
[913/1056] Compiling PerceptionCore PerceptionChecking.swift
[916/1056] Compiling PerceptionCore Unchecked.swift
[917/1056] Compiling PerceptionCore Perceptible.swift
[918/1056] Emitting module PerceptionCore
[921/1056] 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()
[924/1056] Compiling PerceptionCore PerceptionRegistrar.swift
[925/1056] Compiling PerceptionCore Perceptible.swift
[926/1056] Compiling PerceptionCore _PerceptionRegistrar.swift
[927/1056] Compiling PerceptionCore Unchecked.swift
[928/1056] Compiling PerceptionCore PerceptionChecking.swift
[933/1056] Emitting module PerceptionCore
[934/1056] Compiling PerceptionCore PerceptionTracking.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()
<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
[958/1057] 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
[959/1057] Compiling CustomDump Foundation.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
[960/1057] Compiling CustomDump GameKit.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
[961/1057] Compiling CustomDump KeyPath.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
[962/1057] Compiling CustomDump Photos.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
[963/1057] Compiling CustomDump Speech.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
[964/1057] Compiling CustomDump StoreKit.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
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/57] Emitting module SwiftSyntax509
[3/62] Compiling SwiftSyntax509 Empty.swift
[4/134] Compiling SwiftSyntax600 Empty.swift
[5/134] Emitting module SwiftSyntax600
[6/134] Compiling SwiftSyntax510 Empty.swift
[7/134] Emitting module SwiftSyntax510
[8/444] Compiling ViewEnvironment ViewEnvironmentKey.swift
[10/463] Compiling IssueReporting LockIsolated.swift
[11/463] Compiling IssueReporting Rethrows.swift
[12/479] Compiling ViewEnvironment EnvironmentValues+ViewEnvironment.swift
[13/479] Emitting module ViewEnvironment
[14/479] Compiling ViewEnvironment ViewEnvironment.swift
[15/479] Emitting module ViewEnvironment
[16/479] Compiling IssueReporting Warn.swift
[17/479] Compiling IssueReporting XCTest.swift
[18/479] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[19/479] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[20/479] Compiling InternalCollectionsUtilities Descriptions.swift
[21/480] Compiling IssueReporting TestContext.swift
[22/480] Compiling IssueReporting Unimplemented.swift
[23/480] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[24/480] Compiling InternalCollectionsUtilities Integer rank.swift
[25/480] Compiling ViewEnvironment EnvironmentValues+ViewEnvironment.swift
[26/480] Compiling ViewEnvironment ViewEnvironment.swift
[27/480] Compiling RxSwift CombineLatest.swift
[28/480] Compiling RxSwift CompactMap.swift
[29/480] Compiling RxSwift Completable+AndThen.swift
[30/480] Compiling RxSwift Completable.swift
[31/480] Compiling RxSwift CompositeDisposable.swift
[32/485] Compiling IssueReporting IsTesting.swift
[33/485] Compiling IssueReporting IssueReporter.swift
[34/485] Compiling IssueReporting BreakpointReporter.swift
[35/485] Compiling IssueReporting FatalErrorReporter.swift
[36/485] Compiling IssueReporting RuntimeWarningReporter.swift
[37/485] Compiling IssueReporting ReportIssue.swift
[38/485] Compiling RxSwift Concat.swift
[39/485] Compiling RxSwift ConcurrentDispatchQueueScheduler.swift
[40/485] Compiling RxSwift ConcurrentMainScheduler.swift
[41/485] Compiling RxSwift ConnectableObservableType.swift
[42/485] Compiling RxSwift Create.swift
[43/485] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[44/485] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[45/485] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[48/485] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[49/485] Compiling InternalCollectionsUtilities _SortedCollection.swift
[55/496] Compiling InternalCollectionsUtilities Debugging.swift
[56/496] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[57/496] Compiling InternalCollectionsUtilities Descriptions.swift
[58/496] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[59/496] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[62/497] Compiling RxSwift CurrentThreadScheduler.swift
[63/497] Compiling RxSwift Date+Dispatch.swift
[64/497] Compiling RxSwift Debounce.swift
[65/497] Compiling RxSwift PrimitiveSequence+Concurrency.swift
[66/497] Compiling RxSwift PrimitiveSequence+Zip+arity.swift
[67/497] Emitting module IssueReporting
[68/497] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[69/497] Compiling InternalCollectionsUtilities Debugging.swift
[70/497] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[71/497] Compiling InternalCollectionsUtilities UInt+reversed.swift
[72/497] Emitting module InternalCollectionsUtilities
[77/497] Compiling IssueReporting WithExpectedIssue.swift
[78/497] Compiling IssueReporting WithIssueContext.swift
[79/505] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[80/562] Compiling SwiftSyntax Convenience.swift
[81/562] Compiling SwiftSyntax CustomTraits.swift
[82/562] Compiling SwiftSyntax RawSyntaxNodesD.swift
[83/562] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[84/562] Compiling SwiftSyntax SourceLength.swift
[85/562] Compiling SwiftSyntax SourceLocation.swift
[86/562] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[87/562] Compiling SwiftSyntax SourceEdit.swift
[88/564] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[89/564] Compiling SwiftSyntax Assert.swift
[90/564] Emitting module InternalCollectionsUtilities
[91/564] Compiling SwiftSyntax BumpPtrAllocator.swift
[92/564] Compiling SwiftSyntax CommonAncestor.swift
[95/570] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[96/570] Compiling SwiftSyntax RawSyntaxNodesC.swift
[97/570] Compiling SwiftSyntax Tokens.swift
[98/570] Compiling SwiftSyntax TriviaPieces.swift
[101/570] Compiling SwiftSyntax AbsolutePosition.swift
[102/570] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[105/570] Emitting module IssueReporting
[106/573] Emitting module ReactiveSwift
[107/629] Compiling OrderedCollections OrderedSet+Codable.swift
[108/629] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[109/629] Compiling OrderedCollections OrderedSet+Descriptions.swift
[110/629] Compiling OrderedCollections OrderedSet+Diffing.swift
[111/629] Compiling OrderedCollections OrderedSet+Equatable.swift
[112/629] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[119/629] Emitting module ReactiveSwift
[120/629] Compiling OrderedCollections OrderedSet+Sendable.swift
[121/629] Compiling OrderedCollections OrderedSet+Hashable.swift
[122/629] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[123/629] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[126/629] Compiling OrderedCollections OrderedSet+Initializers.swift
[127/629] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[128/629] Compiling OrderedCollections _HashTable.swift
[129/629] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[130/629] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[131/629] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[132/629] Compiling OrderedCollections _HashTable+Bucket.swift
[133/629] Compiling OrderedCollections _HashTable+BucketIterator.swift
[134/629] Compiling OrderedCollections _HashTable+Constants.swift
[135/629] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[136/629] Compiling OrderedCollections _HashTable+Testing.swift
[164/645] Compiling OrderedCollections OrderedDictionary+Codable.swift
[165/645] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[166/645] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[167/645] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[168/645] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[169/645] Compiling SwiftSyntax SyntaxVisitor.swift
[170/645] Compiling SwiftSyntax TokenKind.swift
[171/645] Compiling SwiftSyntax Utils.swift
[172/645] Compiling SwiftSyntax ChildNameForKeyPath.swift
[173/645] Compiling SwiftSyntax Keyword.swift
[174/645] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[175/645] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[176/645] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[177/645] Compiling SwiftSyntax SyntaxBaseNodes.swift
[178/645] Compiling RxSwift Merge.swift
[179/645] Compiling RxSwift Multicast.swift
[180/645] Compiling RxSwift Rx.swift
[181/661] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[182/661] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[183/661] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[184/661] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[185/661] Emitting module ViewEnvironmentUI
[186/661] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
[193/683] Compiling PerceptionCore BetaChecking.swift
[194/683] Compiling PerceptionCore Exports.swift
[195/683] Compiling PerceptionCore Locking.swift
[196/683] Compiling PerceptionCore ThreadLocal.swift
[197/683] Compiling PerceptionCore Bindable.swift
[198/683] Compiling PerceptionCore Environment.swift
[201/690] Compiling OrderedCollections _Hashtable+Header.swift
[207/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[208/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[209/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[210/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[211/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[212/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[213/690] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[214/690] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[215/690] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[216/690] Emitting module ViewEnvironmentUI
[217/690] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[218/690] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
[219/690] Compiling RxSwift Enumerated.swift
[220/690] Compiling RxSwift Error.swift
[221/690] Compiling RxSwift Errors.swift
[222/690] Compiling RxSwift Event.swift
[223/690] Compiling RxSwift Filter.swift
[224/690] Compiling RxSwift First.swift
[225/690] Compiling RxSwift Generate.swift
[226/690] Compiling RxSwift GroupBy.swift
[227/690] Compiling RxSwift GroupedObservable.swift
[228/690] Compiling RxSwift HistoricalScheduler.swift
[229/690] Compiling RxSwift HistoricalSchedulerTimeConverter.swift
[230/690] Compiling RxSwift ImmediateSchedulerType.swift
[231/690] Compiling RxSwift Infallible+CombineLatest+Collection.swift
[232/690] Compiling RxSwift Infallible+CombineLatest+arity.swift
[233/690] Compiling RxSwift Infallible+Concurrency.swift
[234/690] Compiling RxSwift Infallible+Create.swift
[235/690] Compiling RxSwift NopDisposable.swift
[236/690] Compiling RxSwift Observable+Concurrency.swift
[237/690] Compiling RxSwift Observable.swift
[238/690] Compiling RxSwift ObservableConvertibleType+Infallible.swift
[239/690] Compiling RxSwift ObservableConvertibleType.swift
[240/690] Compiling RxSwift ObservableType+Extensions.swift
[241/690] Compiling RxSwift ObservableType+PrimitiveSequence.swift
[242/690] Compiling RxSwift ObservableType.swift
[243/690] Compiling RxSwift ObserveOn.swift
[244/690] Compiling RxSwift ObserverBase.swift
[245/690] Compiling RxSwift ObserverType.swift
[246/690] Compiling RxSwift OperationQueueScheduler.swift
[247/690] Compiling RxSwift Optional.swift
[248/690] Compiling RxSwift Platform.Darwin.swift
[249/690] Compiling RxSwift Platform.Linux.swift
[250/690] Compiling RxSwift AddRef.swift
[251/690] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[252/690] Compiling SwiftSyntax SyntaxNodesOP.swift
[253/690] Compiling SwiftSyntax SyntaxNodesQRS.swift
[254/690] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[255/690] Compiling RxSwift ScheduledItem.swift
[256/690] Compiling RxSwift ScheduledItemType.swift
[257/690] Compiling RxSwift SchedulerServices+Emulation.swift
[258/690] Compiling RxSwift SchedulerType.swift
[259/690] Compiling RxSwift Sequence.swift
[260/690] Compiling RxSwift SerialDispatchQueueScheduler.swift
[261/690] Compiling RxSwift SerialDisposable.swift
[262/690] Compiling RxSwift ShareReplayScope.swift
[263/690] Compiling RxSwift Single.swift
[264/690] Compiling RxSwift SingleAssignmentDisposable.swift
[265/690] Compiling RxSwift SingleAsync.swift
[266/690] Compiling RxSwift Sink.swift
[267/690] Compiling RxSwift Amb.swift
[268/690] Compiling RxSwift AnonymousDisposable.swift
[269/690] Compiling RxSwift AnonymousObserver.swift
[270/690] Compiling RxSwift AnyObserver.swift
[271/690] Compiling RxSwift AsMaybe.swift
[272/690] Compiling RxSwift AsSingle.swift
[273/690] Compiling RxSwift AsyncLock.swift
[274/690] Compiling RxSwift AsyncSubject.swift
[275/690] Compiling RxSwift AtomicInt.swift
[276/690] Compiling RxSwift Bag+Rx.swift
[277/690] Compiling RxSwift Bag.swift
[278/690] Compiling RxSwift BehaviorSubject.swift
[279/690] Compiling RxSwift BinaryDisposable.swift
[280/690] Compiling RxSwift Binder.swift
[281/690] Compiling RxSwift BooleanDisposable.swift
[282/690] Compiling RxSwift Buffer.swift
[283/690] Compiling RxSwift Skip.swift
[284/690] Compiling RxSwift SkipUntil.swift
[285/690] Compiling RxSwift SkipWhile.swift
[286/690] Compiling RxSwift StartWith.swift
[287/690] Compiling RxSwift SubjectType.swift
[288/690] Compiling RxSwift SubscribeOn.swift
[289/690] Compiling RxSwift SubscriptionDisposable.swift
[290/690] Compiling RxSwift SwiftSupport.swift
[291/690] Compiling RxSwift Switch.swift
[292/690] Compiling RxSwift SwitchIfEmpty.swift
[293/690] Compiling RxSwift SynchronizedDisposeType.swift
[294/690] Compiling RxSwift SynchronizedOnType.swift
[295/690] Compiling RxSwift SynchronizedUnsubscribeType.swift
[296/690] Compiling RxSwift TailRecursiveSink.swift
[297/690] Compiling RxSwift Take.swift
[298/690] Compiling RxSwift Never.swift
[299/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[300/690] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[301/690] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[302/690] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[303/690] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[304/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[305/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[306/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[307/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[308/690] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[309/690] Compiling OrderedCollections OrderedSet+Insertions.swift
[310/690] Compiling OrderedCollections OrderedSet+Invariants.swift
[311/690] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[312/690] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[313/690] Compiling OrderedCollections OrderedDictionary+Elements.swift
[314/690] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[315/690] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[316/690] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[317/690] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[318/690] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[319/690] Compiling OrderedCollections OrderedDictionary+Values.swift
[320/690] Compiling OrderedCollections OrderedDictionary.swift
[358/690] Emitting module RxSwift
[359/690] Compiling XCTestDynamicOverlay Exports.swift
[360/703] Emitting module XCTestDynamicOverlay
[361/703] Compiling XCTestDynamicOverlay Deprecations.swift
[362/703] Compiling XCTestDynamicOverlay Exports.swift
[412/703] Compiling SwiftSyntax SyntaxNodesGHI.swift
[444/703] Emitting module RxSwift
[482/703] Compiling OrderedCollections OrderedSet+SubSequence.swift
[483/703] Compiling OrderedCollections OrderedSet+Testing.swift
[484/703] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[485/703] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[486/703] Compiling OrderedCollections OrderedSet.swift
[487/703] Compiling OrderedCollections _UnsafeBitset.swift
[491/703] Compiling SwiftSyntax SyntaxNodesD.swift
[492/703] Compiling SwiftSyntax SyntaxNodesEF.swift
[493/759] Compiling OrderedCollections OrderedDictionary+Elements.swift
[494/759] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[495/759] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[496/759] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[497/759] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[498/759] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[499/759] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[500/759] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[501/759] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[502/759] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[503/759] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[504/759] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[505/759] Compiling OrderedCollections _Hashtable+Header.swift
[512/759] Emitting module XCTestDynamicOverlay
[513/759] Compiling XCTestDynamicOverlay Deprecations.swift
[514/760] Compiling PerceptionCore PerceptionTracking.swift
[515/760] Compiling PerceptionCore PerceptionChecking.swift
[516/761] Compiling PerceptionCore Perceptible.swift
[517/761] Compiling PerceptionCore Unchecked.swift
[520/763] Compiling PerceptionCore _PerceptionRegistrar.swift
[521/763] Compiling CustomDump Dump.swift
[522/763] Compiling CustomDump ExpectDifference.swift
[525/766] Emitting module PerceptionCore
[526/769] Compiling PerceptionCore PerceptionRegistrar.swift
[529/788] Compiling CustomDump ExpectNoDifference.swift
[530/788] Compiling CustomDump Photos.swift
[531/788] Compiling CustomDump Speech.swift
[532/788] Compiling CustomDump StoreKit.swift
[533/788] Compiling CustomDump CustomDumpRepresentable.swift
[534/788] Compiling CustomDump CustomDumpStringConvertible.swift
[535/788] Compiling CustomDump Diff.swift
[536/788] Compiling CustomDump Foundation.swift
[537/788] Compiling CustomDump GameKit.swift
[538/788] Compiling CustomDump KeyPath.swift
[539/788] Compiling CustomDump UserNotifications.swift
[540/788] Compiling CustomDump UserNotificationsUI.swift
[541/788] Compiling CustomDump CustomDumpReflectable.swift
[542/788] Compiling CustomDump CoreImage.swift
[543/788] Compiling CustomDump CoreLocation.swift
[544/788] Compiling CustomDump CoreMotion.swift
[545/788] Compiling CustomDump AnyType.swift
[546/788] Compiling CustomDump CollectionDifference.swift
[547/788] Compiling CustomDump Identifiable.swift
[548/788] Compiling CustomDump Swift.swift
[549/788] Compiling CustomDump SwiftUI.swift
[550/788] Compiling CustomDump UIKit.swift
[551/788] Compiling CustomDump Mirror.swift
[552/788] Compiling CustomDump String.swift
[553/788] Compiling CustomDump Unordered.swift
[554/788] Compiling OrderedCollections OrderedSet+Descriptions.swift
[555/788] Compiling OrderedCollections OrderedSet+Diffing.swift
[556/788] Compiling OrderedCollections OrderedSet+Equatable.swift
[557/788] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[558/788] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[559/788] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[560/788] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[590/794] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[591/794] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[592/794] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[593/794] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[594/794] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[595/794] Compiling OrderedCollections OrderedSet+Sendable.swift
[596/794] Compiling OrderedCollections OrderedSet+Hashable.swift
[597/794] Compiling OrderedCollections OrderedSet+Initializers.swift
[598/794] Compiling OrderedCollections OrderedSet+Insertions.swift
[599/794] Compiling OrderedCollections OrderedSet+Invariants.swift
[600/794] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[601/794] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[605/794] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[606/794] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[607/794] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[608/794] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[609/794] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[610/794] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[611/794] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[612/794] Compiling OrderedCollections OrderedDictionary+Values.swift
[613/794] Compiling OrderedCollections OrderedDictionary.swift
[614/794] Compiling PerceptionCore PerceptionTracking.swift
[617/794] Compiling PerceptionCore Unchecked.swift
[618/794] Compiling PerceptionCore PerceptionChecking.swift
[619/794] Compiling PerceptionCore Perceptible.swift
[620/794] Compiling PerceptionCore _PerceptionRegistrar.swift
[621/794] Emitting module PerceptionCore
[624/794] Compiling PerceptionCore PerceptionRegistrar.swift
[627/795] Emitting module OrderedCollections
[628/823] Compiling PerceptionCore WithPerceptionTracking.swift
[629/823] Compiling CustomDump Swift.swift
[630/823] Compiling CustomDump SwiftUI.swift
[631/823] Compiling CustomDump UIKit.swift
[632/823] Compiling CustomDump Photos.swift
[633/823] Compiling CustomDump Speech.swift
[634/823] Compiling CustomDump StoreKit.swift
[635/823] Compiling CustomDump UserNotifications.swift
[636/823] Compiling CustomDump UserNotificationsUI.swift
[637/823] Compiling CustomDump CustomDumpReflectable.swift
[638/823] Compiling CustomDump AnyType.swift
[639/823] Compiling CustomDump CollectionDifference.swift
[640/823] Compiling CustomDump Identifiable.swift
[641/823] Compiling CustomDump CustomDumpRepresentable.swift
[642/823] Compiling OrderedCollections OrderedSet+SubSequence.swift
[643/823] Compiling OrderedCollections OrderedSet+Testing.swift
[644/823] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[645/823] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[646/823] Compiling OrderedCollections OrderedSet.swift
[647/823] Compiling OrderedCollections _UnsafeBitset.swift
[648/842] Compiling PerceptionCore WithPerceptionTracking.swift
[650/842] Compiling CustomDump CustomDumpStringConvertible.swift
[651/842] Compiling CustomDump Diff.swift
[658/854] Compiling IdentifiedCollections IdentifiedArray+Sendable.swift
[659/854] Compiling IdentifiedCollections IdentifiedArray.swift
[660/855] Compiling IdentifiedCollections IdentifiedArray+Insertions.swift
[661/855] Compiling IdentifiedCollections IdentifiedArray+MutableCollection.swift
[662/855] Compiling IdentifiedCollections IdentifiedArray+RandomAccessCollection.swift
[663/855] Compiling IdentifiedCollections IdentifiedArray+RangeReplaceableCollection.swift
[664/855] Compiling IdentifiedCollections IdentifiedArray+IdentifiedCollection.swift
[665/855] Compiling IdentifiedCollections IdentifiedArray+Initializers.swift
[666/855] Compiling IdentifiedCollections IdentifiedArray+CustomDebugStringConvertible.swift
[667/855] Compiling IdentifiedCollections IdentifiedArray+CustomReflectable.swift
[668/855] Compiling IdentifiedCollections Identified.swift
[669/855] Compiling IdentifiedCollections IdentifiedArray+Codable.swift
[670/855] Compiling IdentifiedCollections IdentifiedArray+Collection.swift
[671/855] Compiling IdentifiedCollections IdentifiedArray+CollectionAlgorithms.swift
[672/855] Compiling IdentifiedCollections IdentifiedArray+ExpressibleByArrayLiteral.swift
[673/855] Compiling IdentifiedCollections IdentifiedArray+Hashable.swift
[674/855] Compiling IdentifiedCollections IdentifiedArray+CustomStringConvertible.swift
[675/855] Compiling IdentifiedCollections IdentifiedArray+Equatable.swift
[682/855] Emitting module OrderedCollections
[683/855] Compiling CasePathsCore Never+CasePathable.swift
[684/855] Compiling CasePathsCore UncheckedSendable.swift
[685/855] Compiling CasePathsCore CasePathIterable.swift
[686/855] Compiling CasePathsCore Optional+CasePathable.swift
[687/855] Compiling CasePathsCore TypeName.swift
[688/855] Compiling CasePathsCore KeyPath+Sendable.swift
[689/856] Compiling IdentifiedCollections IdentifiedCollection.swift
[690/856] Emitting module CustomDump
[691/856] Compiling RxSwift TakeLast.swift
[692/856] Compiling RxSwift TakeWithPredicate.swift
[693/856] Compiling RxSwift Throttle.swift
[694/856] Compiling RxSwift Timeout.swift
[695/856] Compiling RxSwift Timer.swift
[696/856] Compiling RxSwift ToArray.swift
[697/856] Compiling RxSwift Using.swift
[698/856] Compiling RxSwift VirtualTimeConverterType.swift
[699/856] Compiling RxSwift VirtualTimeScheduler.swift
[700/856] Compiling RxSwift Window.swift
[701/856] Compiling RxSwift WithLatestFrom.swift
[702/856] Compiling RxSwift WithUnretained.swift
[703/856] Compiling RxSwift Zip+Collection.swift
[704/856] Compiling RxSwift Zip+arity.swift
[705/856] Compiling RxSwift Zip.swift
[706/856] Compiling RxSwift resource_bundle_accessor.swift
[723/856] Emitting module IdentifiedCollections
[724/856] Compiling CasePathsCore AnyCasePath.swift
[725/856] Emitting module CasePathsCore
[726/856] Compiling CasePathsCore CasePathReflectable.swift
[727/856] Compiling CasePathsCore CasePathable.swift
[738/885] Emitting module CustomDump
[739/887] Compiling CustomDump XCTAssertDifference.swift
[740/887] Compiling CustomDump XCTAssertNoDifference.swift
[741/903] Compiling CasePathsCore Result+CasePathable.swift
[742/919] Compiling IdentifiedCollections IdentifiedArray.swift
[743/919] Compiling IdentifiedCollections IdentifiedArray+RandomAccessCollection.swift
[744/919] Compiling IdentifiedCollections IdentifiedArray+RangeReplaceableCollection.swift
[745/919] Compiling CasePathsCore Never+CasePathable.swift
[746/920] Compiling CasePathsCore Optional+CasePathable.swift
[747/920] Compiling CasePathsCore TypeName.swift
[748/920] Compiling CasePathsCore UncheckedSendable.swift
[749/920] Compiling CasePathsCore CasePathIterable.swift
[750/920] Compiling CasePathsCore KeyPath+Sendable.swift
[751/920] Compiling CasePathsCore CasePathReflectable.swift
[752/920] Compiling CasePathsCore AnyCasePath.swift
[753/920] Emitting module CasePathsCore
[754/920] Compiling CasePathsCore CasePathable.swift
[755/920] Compiling Workflow SubtreeManager.swift
[756/920] Compiling Workflow Workflow.swift
[757/920] Compiling Workflow WorkflowAction.swift
[758/920] Compiling IdentifiedCollections IdentifiedArray+Insertions.swift
[759/920] Compiling IdentifiedCollections IdentifiedArray+MutableCollection.swift
[760/920] Compiling IdentifiedCollections IdentifiedArray+Sendable.swift
[761/920] Compiling Workflow DispatchQueue+Workflow.swift
[762/920] Compiling Workflow Lifetime.swift
[763/920] Compiling Workflow StateMutationSink.swift
[779/921] Compiling Workflow AnyWorkflow.swift
[780/921] Compiling Workflow AnyWorkflowConvertible.swift
[781/921] Compiling Workflow WorkflowLogger.swift
[782/921] Compiling Workflow WorkflowHost.swift
[785/921] Compiling Workflow WorkflowNode.swift
[788/921] Compiling CasePathsCore Result+CasePathable.swift
[795/922] Compiling Workflow ApplyContext.swift
[796/922] Compiling Workflow Debugging.swift
[797/922] Compiling Workflow RenderContext.swift
[798/922] Compiling Workflow Sink.swift
[799/922] Emitting module IdentifiedCollections
[800/922] Compiling IdentifiedCollections IdentifiedCollection.swift
[811/922] Compiling Workflow WorkflowLogger.swift
[812/922] Compiling Workflow WorkflowNode.swift
[813/922] Compiling Workflow WorkflowHost.swift
[816/923] Emitting module Workflow
[834/923] Compiling Workflow WorkflowObserver.swift
[836/972] Emitting module WorkflowRxSwift
[837/972] Compiling WorkflowUI Screen.swift
[838/972] Compiling WorkflowUI ScreenViewController.swift
[839/972] Compiling WorkflowUI DescribedViewController.swift
[840/972] Compiling WorkflowUI UIViewController+Extensions.swift
[841/973] Compiling WorkflowCombine PublisherWorkflow.swift
[842/973] Compiling WorkflowCombine Publisher+Extensions.swift
[843/973] Compiling WorkflowCombine Worker.swift
[844/973] Emitting module WorkflowCombine
[845/973] Compiling WorkflowCombine Logger.swift
[846/973] Compiling WorkflowUI AnyScreen.swift
[847/973] Compiling WorkflowUI WorkflowUIEvents.swift
[848/973] Compiling WorkflowUI WorkflowUIObserver.swift
[849/973] Compiling WorkflowUI WorkflowUIViewController.swift
[850/973] Compiling WorkflowUI AdaptedEnvironmentScreen.swift
[851/973] Compiling WorkflowUI ScreenContaining.swift
[852/973] Compiling WorkflowUI WorkflowHostingController.swift
[853/973] Compiling WorkflowUI ModuleExports.swift
[854/973] Emitting module WorkflowUI
[855/973] Compiling WorkflowRxSwift Worker.swift
[856/973] Compiling WorkflowRxSwift ObservableWorkflow.swift
[857/973] Compiling WorkflowRxSwift Logger.swift
[858/973] Compiling WorkflowConcurrency Logger.swift
[859/973] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[860/973] Emitting module WorkflowConcurrency
[861/973] Compiling WorkflowConcurrency Worker.swift
[880/973] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[881/973] Compiling WorkflowReactiveSwift SignalWorker.swift
[882/973] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
[883/973] Compiling WorkflowReactiveSwift Worker.swift
[884/973] Emitting module WorkflowReactiveSwift
[885/973] Compiling WorkflowReactiveSwift Logger.swift
[886/973] Compiling WorkflowRxSwift Logger.swift
[887/973] Compiling WorkflowRxSwift ObservableWorkflow.swift
[888/973] Emitting module WorkflowRxSwift
[889/973] Compiling WorkflowRxSwift Worker.swift
[890/979] Compiling WorkflowUI UIViewController+Extensions.swift
[891/979] Compiling WorkflowUI DescribedViewController.swift
[892/979] Compiling WorkflowUI ScreenContaining.swift
[895/979] Compiling WorkflowUI Screen.swift
[900/979] Emitting module WorkflowUI
[901/979] Compiling WorkflowUI AnyScreen.swift
[902/979] Compiling WorkflowUI ScreenViewController.swift
[903/1003] Compiling WorkflowUI ViewControllerDescription.swift
[904/1003] Compiling WorkflowReactiveSwift SignalWorker.swift
[905/1003] Compiling WorkflowReactiveSwift Worker.swift
[906/1003] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
[907/1003] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[908/1003] Emitting module WorkflowReactiveSwift
[909/1003] Compiling WorkflowReactiveSwift Logger.swift
[910/1003] Compiling WorkflowUI ViewControllerDescription.swift
[911/1003] Compiling WorkflowCombine Publisher+Extensions.swift
[912/1003] Compiling WorkflowCombine PublisherWorkflow.swift
[913/1003] Compiling WorkflowCombine Logger.swift
[914/1003] Compiling WorkflowCombine Worker.swift
[915/1003] Emitting module WorkflowCombine
[916/1003] Compiling WorkflowConcurrency Logger.swift
[917/1003] Compiling WorkflowConcurrency Worker.swift
[918/1003] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[919/1003] Emitting module WorkflowConcurrency
[927/1003] Emitting module SwiftSyntax
[928/1003] Compiling WorkflowTesting WorkflowActionTester.swift
[929/1003] Compiling WorkflowTesting RenderExpectations.swift
[930/1003] Compiling WorkflowTesting RenderTesterResult.swift
[931/1003] Compiling WorkflowTesting WorkflowRenderTester.swift
[932/1003] Compiling WorkflowTesting RenderTesterResult.swift
[933/1003] Compiling WorkflowTesting WorkflowActionTester.swift
[934/1003] Compiling WorkflowTesting WorkflowRenderTester.swift
[935/1003] Compiling WorkflowTesting RenderExpectations.swift
[936/1003] Compiling WorkflowTesting AppliedAction.swift
[937/1003] Emitting module WorkflowTesting
[938/1003] Compiling WorkflowTesting RenderTester+TestContext.swift
[939/1003] Emitting module WorkflowTesting
[940/1003] Compiling WorkflowTesting AppliedAction.swift
[941/1003] Compiling WorkflowTesting RenderTester+TestContext.swift
[942/1025] Compiling WorkflowConcurrencyTesting WorkerTesting.swift
[943/1025] Emitting module WorkflowConcurrencyTesting
[944/1025] Compiling WorkflowRxSwiftTesting ObservableTesting.swift
[945/1025] Emitting module WorkflowRxSwiftTesting
[946/1025] Compiling WorkflowRxSwiftTesting WorkerTesting.swift
[947/1025] Emitting module WorkflowReactiveSwiftTesting
[949/1025] Compiling WorkflowReactiveSwiftTesting SignalProducerWorkflowTesting.swift
[950/1025] Compiling WorkflowReactiveSwiftTesting WorkerTesting.swift
[951/1025] Compiling WorkflowRxSwiftTesting ObservableTesting.swift
[952/1025] Emitting module WorkflowRxSwiftTesting
[953/1025] Compiling WorkflowRxSwiftTesting WorkerTesting.swift
[954/1025] Emitting module WorkflowCombineTesting
[955/1025] Compiling WorkflowCombineTesting WorkerTesting.swift
[956/1025] Compiling WorkflowCombineTesting PublisherTesting.swift
[957/1025] Compiling WorkflowReactiveSwiftTesting SignalProducerWorkflowTesting.swift
[958/1025] Compiling WorkflowReactiveSwiftTesting WorkerTesting.swift
[959/1025] Emitting module WorkflowCombineTesting
[960/1025] Compiling WorkflowCombineTesting PublisherTesting.swift
[961/1025] Compiling WorkflowCombineTesting WorkerTesting.swift
[962/1025] Compiling WorkflowConcurrencyTesting WorkerTesting.swift
[963/1025] Emitting module WorkflowConcurrencyTesting
[1020/1083] Compiling SwiftDiagnostics Message.swift
[1021/1084] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[1022/1084] Compiling SwiftBasicFormat Syntax+Extensions.swift
[1023/1084] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[1024/1084] Compiling SwiftDiagnostics Note.swift
[1025/1084] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[1026/1084] Compiling SwiftDiagnostics FixIt.swift
[1027/1084] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[1028/1084] Compiling SwiftDiagnostics Diagnostic.swift
[1029/1084] Compiling SwiftDiagnostics Convenience.swift
[1030/1084] Emitting module SwiftDiagnostics
[1031/1084] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[1032/1084] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[1033/1084] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[1034/1084] Compiling SwiftBasicFormat InferIndentation.swift
[1035/1084] Emitting module SwiftBasicFormat
[1036/1084] Compiling SwiftBasicFormat BasicFormat.swift
[1037/1084] Compiling SwiftParser TopLevel.swift
[1038/1084] Compiling SwiftParser TriviaParser.swift
[1039/1084] Compiling SwiftParser Types.swift
[1040/1084] Compiling SwiftParser ExperimentalFeatures.swift
[1041/1088] Compiling SwiftParser UnicodeScalarExtensions.swift
[1042/1088] Compiling SwiftParser Lookahead.swift
[1043/1088] Compiling SwiftParser LoopProgressCondition.swift
[1044/1088] Compiling SwiftParser Modifiers.swift
[1045/1088] Compiling SwiftParser Names.swift
[1046/1088] Compiling SwiftParser StringLiterals.swift
[1047/1088] Compiling SwiftParser SwiftParserCompatibility.swift
[1048/1088] Compiling SwiftParser SwiftVersion.swift
[1049/1088] Compiling SwiftParser SyntaxUtils.swift
[1050/1088] Compiling SwiftParser TokenConsumer.swift
[1051/1088] Compiling SwiftParser TokenPrecedence.swift
[1052/1088] Compiling SwiftParser TokenSpec.swift
[1053/1088] Compiling SwiftParser TokenSpecSet.swift
[1054/1088] Emitting module SwiftParser
[1055/1088] Compiling SwiftParser Nominals.swift
[1056/1088] Compiling SwiftParser Parameters.swift
[1057/1088] Compiling SwiftParser ParseSourceFile.swift
[1058/1088] Compiling SwiftParser Parser.swift
[1059/1088] Compiling SwiftParser Patterns.swift
[1060/1088] Compiling SwiftParser Recovery.swift
[1061/1088] Compiling SwiftParser Specifiers.swift
[1062/1088] Compiling SwiftParser Statements.swift
[1063/1088] Compiling SwiftParser StringLiteralRepresentedLiteralValue.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 Utils.swift
[1084/1112] Compiling SwiftOperators PrecedenceGraph.swift
[1085/1112] Compiling SwiftOperators Operator.swift
[1086/1112] Compiling SwiftOperators OperatorError.swift
[1087/1112] Compiling SwiftOperators PrecedenceGroup.swift
[1088/1112] Compiling SwiftOperators OperatorTable.swift
[1089/1112] Emitting module SwiftOperators
[1090/1113] Compiling SwiftOperators OperatorError+Diagnostics.swift
[1091/1113] Compiling SwiftOperators OperatorTable+Semantics.swift
[1092/1113] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[1093/1113] Compiling SwiftOperators OperatorTable+Defaults.swift
[1094/1113] Compiling SwiftOperators OperatorTable+Folding.swift
[1095/1113] Compiling SwiftOperators SyntaxSynthesis.swift
[1096/1113] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[1097/1113] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[1098/1113] Compiling SwiftParserDiagnostics PresenceUtils.swift
[1099/1113] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[1100/1113] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[1101/1113] Compiling SwiftParserDiagnostics MissingNodesError.swift
[1102/1113] Compiling SwiftParserDiagnostics MissingTokenError.swift
[1103/1113] Emitting module SwiftParserDiagnostics
[1104/1113] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[1105/1113] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[1106/1113] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[1107/1113] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[1108/1128] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[1109/1129] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[1110/1129] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[1111/1129] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[1112/1129] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[1113/1129] Compiling SwiftSyntaxBuilder ResultBuilders.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] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[1119/1129] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[1120/1129] Emitting module SwiftSyntaxBuilder
[1121/1129] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[1122/1129] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[1123/1129] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[1124/1147] Compiling SwiftSyntaxMacros PreambleMacro.swift
[1125/1148] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[1126/1148] Compiling SwiftSyntaxMacros Macro+Format.swift
[1127/1148] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[1128/1148] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[1129/1148] Compiling SwiftSyntaxMacros Macro.swift
[1130/1148] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[1131/1148] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[1132/1148] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[1133/1148] Compiling SwiftSyntaxMacros MemberMacro.swift
[1134/1148] Compiling SwiftSyntaxMacros PeerMacro.swift
[1135/1148] Compiling SwiftSyntaxMacros AttachedMacro.swift
[1136/1148] Compiling SwiftSyntaxMacros BodyMacro.swift
[1137/1148] Emitting module SwiftSyntaxMacros
[1138/1148] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[1139/1148] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[1140/1148] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[1141/1148] Compiling SwiftSyntaxMacros AccessorMacro.swift
[1142/1148] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[1143/1158] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[1144/1158] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[1145/1158] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[1146/1158] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[1147/1158] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[1148/1158] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[1149/1158] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[1150/1158] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[1151/1158] Emitting module SwiftSyntaxMacroExpansion
[1152/1158] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[1153/1170] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[1154/1170] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[1155/1170] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[1156/1170] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[1157/1170] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[1158/1170] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[1159/1170] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[1160/1170] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[1161/1170] Emitting module SwiftCompilerPluginMessageHandling
[1162/1170] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[1163/1170] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[1164/1170] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[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 Availability.swift
[1170/1186] Compiling PerceptionMacros Availability.swift
[1171/1186] Compiling WorkflowSwiftUIMacros Plugins.swift
[1172/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 |             }
[1173/1186] Compiling PerceptionMacros Extensions.swift
[1174/1186] Compiling PerceptionMacros Plugins.swift
[1175/1186] Compiling PerceptionMacros PerceptibleMacro.swift
[1176/1186] Emitting module PerceptionMacros
[1176/1186] Write Objects.LinkFileList
[1178/1186] Emitting module WorkflowSwiftUIMacros
[1179/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] Write Objects.LinkFileList
[1181/1186] Compiling CasePathsMacros CasePathableMacro.swift
[1182/1186] Emitting module CasePathsMacros
[1182/1186] Write Objects.LinkFileList
[1183/1186] Linking WorkflowSwiftUIMacros-tool
[1184/1186] Linking PerceptionMacros-tool
[1185/1186] Linking CasePathsMacros-tool
[1187/1206] Compiling Perception Exports.swift
[1188/1206] Compiling CasePaths XCTestSupport.swift
[1189/1206] Compiling CasePaths LockIsolated.swift
[1190/1206] Compiling CasePaths EnumReflection.swift
[1191/1206] Compiling CasePaths Exports.swift
[1192/1206] Compiling CasePaths Deprecations.swift
[1193/1206] Compiling CasePaths XCTestSupport.swift
[1194/1206] Compiling CasePaths Macros.swift
[1195/1206] Compiling CasePaths Exports.swift
[1196/1206] Compiling CasePaths EnumReflection.swift
[1197/1206] Compiling CasePaths LockIsolated.swift
[1198/1206] Compiling CasePaths Macros.swift
[1199/1206] Emitting module CasePaths
[1200/1206] Compiling CasePaths Deprecations.swift
[1201/1206] Emitting module CasePaths
[1202/1206] Compiling Perception Exports.swift
[1203/1206] Emitting module Perception
[1204/1206] Compiling Perception Macros.swift
[1205/1206] Emitting module Perception
[1206/1206] Compiling Perception Macros.swift
[1207/1238] Compiling WorkflowSwiftUI UIViewController+Orientation.swift
[1209/1240] Compiling WorkflowSwiftUI Workflow+Preview.swift
[1211/1240] Compiling WorkflowSwiftUI ObservableScreen+Preview.swift
[1212/1240] Compiling WorkflowSwiftUI ObservableScreen.swift
[1213/1240] Compiling WorkflowSwiftUI ObservationStateRegistrar.swift
[1214/1240] Compiling WorkflowSwiftUI Exports.swift
[1215/1240] Compiling WorkflowSwiftUI AreOrderedSetsDuplicates.swift
[1216/1240] Compiling WorkflowSwiftUI ObservableState.swift
[1217/1240] Compiling WorkflowSwiftUI ActionModel.swift
[1218/1240] Compiling WorkflowSwiftUI Bindable+Store.swift
[1221/1240] Emitting module WorkflowSwiftUI
[1223/1240] Compiling WorkflowSwiftUI Store+Preview.swift
[1224/1240] Compiling WorkflowSwiftUI RenderContext+ObservableModel.swift
[1225/1240] Compiling WorkflowSwiftUI StateAccessor.swift
[1228/1240] Compiling WorkflowSwiftUI Macros.swift
[1229/1240] Compiling WorkflowSwiftUI ObservableModel.swift
[1230/1240] Compiling WorkflowSwiftUI Store.swift
[1239/1240] Compiling WorkflowSwiftUI Store+Preview.swift
[1240/1240] Compiling WorkflowSwiftUI Store.swift
Build complete! (33.80s)
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.