Build Information
Successful build of Workflow, reference main (006190
), with Swift 6.1 for macOS (SPM) on 8 Sep 2025 20:51:36 UTC.
Swift 6 data race errors: 23
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
356 | func handle(action: Action) {
357 | let output = Output.update(
:
365 | // Scheduling it to be processed after.
366 | DispatchQueue.workflowExecution.async { [weak self] in
367 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
368 | }
369 | return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:367:51: warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
157 | extension WorkflowNode.SubtreeManager {
158 | /// The possible output types that a SubtreeManager can produce.
159 | enum Output {
| `- note: consider making enum 'Output' conform to the 'Sendable' protocol
160 | /// Indicates that an event produced a `WorkflowAction` to apply to the node.
161 | ///
:
365 | // Scheduling it to be processed after.
366 | DispatchQueue.workflowExecution.async { [weak self] in
367 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
368 | }
369 | return
[415/544] Compiling CustomDump GameKit.swift
macro expansion @TaskLocal:1:12: warning: static property '$_currentConfiguration' is not concurrency-safe because non-'Sendable' type 'TaskLocal<Runtime.Configuration?>' may have shared mutable state; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | |- warning: static property '$_currentConfiguration' is not concurrency-safe because non-'Sendable' type 'TaskLocal<Runtime.Configuration?>' may have shared mutable state; this is an error in the Swift 6 language mode
| | |- note: add '@MainActor' to make static property '$_currentConfiguration' part of global actor 'MainActor'
| | `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
macro expansion @TaskLocal:1:12: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
macro expansion @TaskLocal:1:64: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
macro expansion @TaskLocal:1:64: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:25:16: warning: static property '_bootstrapConfiguration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
23 | static var _currentConfiguration: Configuration?
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
| |- warning: static property '_bootstrapConfiguration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_bootstrapConfiguration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_bootstrapConfiguration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /// Bootstrap the workflow runtime with the given configuration.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:87:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Runtime.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Runtime.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// Note: this doesn't control anything yet, but is here as a placeholder
macro expansion @TaskLocal:3:32: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | {
|2 | get {
|3 | $_currentConfiguration.get()
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
|4 | }
|5 | }
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:65:14: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
63 | return Runtime
64 | .$_currentConfiguration
65 | .withValue(
| `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
66 | configSnapshot,
67 | operation: operation
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
[416/544] Compiling CustomDump KeyPath.swift
macro expansion @TaskLocal:1:12: warning: static property '$_currentConfiguration' is not concurrency-safe because non-'Sendable' type 'TaskLocal<Runtime.Configuration?>' may have shared mutable state; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | |- warning: static property '$_currentConfiguration' is not concurrency-safe because non-'Sendable' type 'TaskLocal<Runtime.Configuration?>' may have shared mutable state; this is an error in the Swift 6 language mode
| | |- note: add '@MainActor' to make static property '$_currentConfiguration' part of global actor 'MainActor'
| | `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
macro expansion @TaskLocal:1:12: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
macro expansion @TaskLocal:1:64: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
macro expansion @TaskLocal:1:64: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:25:16: warning: static property '_bootstrapConfiguration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
23 | static var _currentConfiguration: Configuration?
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
| |- warning: static property '_bootstrapConfiguration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_bootstrapConfiguration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_bootstrapConfiguration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /// Bootstrap the workflow runtime with the given configuration.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:87:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Runtime.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Runtime.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// Note: this doesn't control anything yet, but is here as a placeholder
macro expansion @TaskLocal:3:32: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | {
|2 | get {
|3 | $_currentConfiguration.get()
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
|4 | }
|5 | }
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:65:14: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
63 | return Runtime
64 | .$_currentConfiguration
65 | .withValue(
| `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
66 | configSnapshot,
67 | operation: operation
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
[417/544] Compiling CustomDump CoreMotion.swift
[418/544] Compiling CustomDump Foundation.swift
[419/544] Compiling CustomDump CoreImage.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(
[420/544] Compiling CustomDump CoreLocation.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(
[421/544] Compiling CustomDump Mirror.swift
[422/544] Compiling CustomDump String.swift
[423/544] Compiling CustomDump StoreKit.swift
[424/544] Compiling CustomDump UserNotifications.swift
[425/544] 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(
macro expansion @TaskLocal:1:12: warning: static property '$_currentConfiguration' is not concurrency-safe because non-'Sendable' type 'TaskLocal<Runtime.Configuration?>' may have shared mutable state; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | |- warning: static property '$_currentConfiguration' is not concurrency-safe because non-'Sendable' type 'TaskLocal<Runtime.Configuration?>' may have shared mutable state; this is an error in the Swift 6 language mode
| | |- note: add '@MainActor' to make static property '$_currentConfiguration' part of global actor 'MainActor'
| | `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
macro expansion @TaskLocal:1:12: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
macro expansion @TaskLocal:1:64: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
macro expansion @TaskLocal:1:64: warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:23:53: note: expanded code originates here
21 | public enum Runtime {
22 | @TaskLocal
23 | static var _currentConfiguration: Configuration?
+--- macro expansion @TaskLocal ------------------------------------
|1 | static let $_currentConfiguration: TaskLocal<Configuration?> = TaskLocal(wrappedValue: nil)
| | `- warning: type 'Runtime.Configuration' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
+-------------------------------------------------------------------
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
:
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:25:16: warning: static property '_bootstrapConfiguration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
23 | static var _currentConfiguration: Configuration?
24 |
25 | static var _bootstrapConfiguration = BootstrappableConfiguration()
| |- warning: static property '_bootstrapConfiguration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_bootstrapConfiguration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_bootstrapConfiguration' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /// Bootstrap the workflow runtime with the given configuration.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/RuntimeConfiguration.swift:87:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Runtime.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
83 | extension Runtime {
84 | /// Configuration options for the Workflow runtime.
85 | public struct Configuration: Equatable {
| `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
86 | /// The default runtime configuration.
87 | static let `default` = Configuration()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Runtime.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 |
89 | /// Note: this doesn't control anything yet, but is here as a placeholder
/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.
[426/544] 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 |
[427/545] 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
[428/545] 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
[429/545] 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
[430/545] 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
[431/545] 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
[432/545] 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
[433/546] 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.
[434/546] 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
[435/546] 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
[436/546] 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
[437/546] 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
[438/566] 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
[439/566] Compiling WorkflowRxSwift ObservableWorkflow.swift
[440/566] Compiling WorkflowCombine PublisherWorkflow.swift
[441/566] Compiling WorkflowCombine Worker.swift
[442/566] Compiling WorkflowReactiveSwift SignalWorker.swift
[443/566] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[444/566] 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",
[445/566] 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 |
[446/566] 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 |
[447/566] Compiling WorkflowRxSwift Worker.swift
[448/566] 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 |
[449/566] Compiling WorkflowCombine Publisher+Extensions.swift
[450/566] Emitting module WorkflowCombine
[451/566] Compiling WorkflowCombine Logger.swift
[452/566] 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",
[453/566] Compiling WorkflowReactiveSwift Worker.swift
[454/566] Compiling WorkflowConcurrency Logger.swift
[455/566] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[456/566] Compiling WorkflowConcurrency AsyncSequenceWorker.swift
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/AsyncSequenceWorker.swift:55:45: warning: sending 'sequence' risks causing data races; this is an error in the Swift 6 language mode
53 | let task = Task { @MainActor in
54 | do {
55 | for try await output in sequence {
| |- warning: sending 'sequence' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'sequence' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
56 | sink.send(AnyWorkflowAction(sendingOutput: output))
57 | }
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/AsyncSequenceWorker.swift:56:25: warning: sending 'sink' risks causing data races; this is an error in the Swift 6 language mode
54 | do {
55 | for try await output in sequence {
56 | sink.send(AnyWorkflowAction(sendingOutput: output))
| |- warning: sending 'sink' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'sink' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
57 | }
58 | } catch {
[457/566] Emitting module WorkflowConcurrency
[458/566] 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 {
[459/566] 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
[460/566] 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.
[461/566] 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
[462/572] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[463/572] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[464/572] 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 |
[465/572] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[466/572] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[467/572] 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 |
[468/585] Emitting module WorkflowUI
[469/586] Compiling WorkflowUI WorkflowHostingController.swift
[470/586] Compiling WorkflowUI ModuleExports.swift
[471/586] Compiling WorkflowUI WorkflowUIViewController.swift
[472/586] Compiling WorkflowUI AdaptedEnvironmentScreen.swift
[473/586] Compiling WorkflowUI ScreenViewController.swift
[474/586] Compiling WorkflowUI Screen.swift
[475/586] Compiling WorkflowUI WorkflowUIEvents.swift
[476/586] Compiling WorkflowUI WorkflowUIObserver.swift
[477/586] Compiling WorkflowUI UIViewController+Extensions.swift
[478/586] Compiling WorkflowUI DescribedViewController.swift
[479/586] Compiling WorkflowUI ScreenContaining.swift
[480/586] Compiling WorkflowUI AnyScreen.swift
[481/586] Compiling WorkflowUI ViewControllerDescription.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[489/586] Compiling PerceptionCore ThreadLocal.swift
[490/587] Compiling PerceptionCore Bindable.swift
[499/587] Emitting module PerceptionCore
[500/587] Compiling PerceptionCore Environment.swift
[501/587] Compiling PerceptionCore WithPerceptionTracking.swift
[504/587] Compiling CustomDump Swift.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[505/587] Compiling CustomDump SwiftUI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[506/587] Compiling CustomDump UIKit.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[507/587] Compiling CustomDump AnyType.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
[508/587] Compiling CustomDump CollectionDifference.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
[509/587] Compiling CustomDump Identifiable.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
[510/589] Compiling PerceptionCore _PerceptionRegistrar.swift
[511/589] Emitting module CustomDump
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<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
[526/589] Compiling CustomDump Dump.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
[527/589] Compiling CustomDump ExpectDifference.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
[528/589] Compiling CustomDump ExpectNoDifference.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
[531/589] Compiling CustomDump Unordered.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[532/589] Compiling CustomDump CustomDumpRepresentable.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
[533/589] Compiling CustomDump CustomDumpStringConvertible.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
[534/589] Compiling CustomDump Diff.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
[535/589] Compiling CustomDump XCTAssertDifference.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[536/589] Compiling CustomDump XCTAssertNoDifference.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<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
[584/654] Compiling SwiftBasicFormat Trivia+FormatExtensions.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
[585/654] Compiling SwiftDiagnostics Message.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
[586/655] Compiling SwiftDiagnostics Note.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
[587/655] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.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
[588/655] Compiling SwiftBasicFormat Syntax+Extensions.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
[589/655] Compiling SwiftBasicFormat InferIndentation.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
[590/655] Compiling SwiftDiagnostics FixIt.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
[591/655] Compiling SwiftDiagnostics GroupedDiagnostics.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
[592/655] Compiling SwiftDiagnostics BasicDiagnosticDecorator.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
[593/655] Compiling SwiftDiagnostics DiagnosticDecorator.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
[594/655] Compiling SwiftDiagnostics Convenience.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
[595/655] Emitting module SwiftDiagnostics
<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
[596/655] Compiling SwiftDiagnostics Diagnostic.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
[597/655] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.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
[598/655] Compiling SwiftDiagnostics DiagnosticsFormatter.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
[599/655] Emitting module SwiftBasicFormat
<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
[600/655] Compiling SwiftBasicFormat BasicFormat.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
[601/655] Compiling SwiftParser StringLiterals.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
[602/655] Compiling SwiftParser SwiftParserCompatibility.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
[603/655] Compiling SwiftParser SwiftVersion.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
[604/655] Compiling SwiftParser SyntaxUtils.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
[605/659] Compiling SwiftParser UnicodeScalarExtensions.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
[606/659] Compiling SwiftParser Lookahead.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
[607/659] Compiling SwiftParser LoopProgressCondition.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
[608/659] Compiling SwiftParser Modifiers.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
[609/659] Compiling SwiftParser Names.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
[610/659] Emitting module SwiftParser
<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
[611/659] Compiling SwiftParser Directives.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
[612/659] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.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
[613/659] Compiling SwiftParser Expressions.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
[614/659] Compiling SwiftParser IncrementalParseTransition.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
[615/659] Compiling SwiftParser IsValidIdentifier.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
[616/659] Compiling SwiftParser TokenConsumer.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
[617/659] Compiling SwiftParser TokenPrecedence.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
[618/659] Compiling SwiftParser TokenSpec.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
[619/659] Compiling SwiftParser TokenSpecSet.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
[620/659] Compiling SwiftParser Nominals.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
[621/659] Compiling SwiftParser Parameters.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
[622/659] Compiling SwiftParser ParseSourceFile.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
[623/659] Compiling SwiftParser Parser.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
[624/659] Compiling SwiftParser Patterns.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
[625/659] Compiling SwiftParser Recovery.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
[626/659] Compiling SwiftParser Specifiers.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
[627/659] Compiling SwiftParser Statements.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
[628/659] Compiling SwiftParser StringLiteralRepresentedLiteralValue.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
[629/659] Compiling SwiftParser Cursor.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
[630/659] Compiling SwiftParser Lexeme.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
[631/659] Compiling SwiftParser LexemeSequence.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
[632/659] Compiling SwiftParser Lexer.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
[633/659] Compiling SwiftParser RegexLiteralLexer.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
[634/659] Compiling SwiftParser TopLevel.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
[635/659] Compiling SwiftParser TriviaParser.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
[636/659] Compiling SwiftParser Types.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
[637/659] Compiling SwiftParser ExperimentalFeatures.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
[638/659] Compiling SwiftParser Attributes.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
[639/659] Compiling SwiftParser Availability.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
[640/659] Compiling SwiftParser CharacterInfo.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
[641/659] Compiling SwiftParser CollectionNodes+Parsable.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
[642/659] Compiling SwiftParser Declarations.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
[643/659] Compiling SwiftParser IsLexerClassified.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
[644/659] Compiling SwiftParser LayoutNodes+Parsable.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
[645/659] Compiling SwiftParser Parser+TokenSpecSet.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
[646/659] Compiling SwiftParser TokenSpecStaticMembers.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
[647/659] Compiling WorkflowTesting RenderTesterResult.swift
[648/659] Compiling WorkflowTesting RenderExpectations.swift
[649/659] Compiling WorkflowTesting WorkflowRenderTester.swift
[650/659] Compiling WorkflowTesting WorkflowActionTester.swift
[651/673] Compiling WorkflowTesting AppliedAction.swift
[652/679] Emitting module WorkflowTesting
[653/680] Compiling WorkflowTesting RenderTester+TestContext.swift
[654/693] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.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
[655/694] Compiling SwiftOperators PrecedenceGroup.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
[656/695] Compiling SwiftOperators PrecedenceGraph.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
[657/695] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.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
[658/695] Compiling SwiftOperators OperatorError+Diagnostics.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
[659/695] Compiling SwiftOperators Operator.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
[660/695] Emitting module SwiftOperators
<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
[661/695] Compiling SwiftOperators SyntaxSynthesis.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
[662/695] Compiling SwiftOperators OperatorError.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
[663/695] Compiling SwiftOperators OperatorTable+Semantics.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
[664/695] Compiling SwiftOperators OperatorTable+Defaults.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
[665/695] Compiling SwiftOperators OperatorTable.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
[666/695] Compiling SwiftOperators OperatorTable+Folding.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
[667/695] Compiling WorkflowReactiveSwiftTesting SignalProducerWorkflowTesting.swift
[668/695] Compiling WorkflowConcurrencyTesting WorkerTesting.swift
[669/695] Emitting module WorkflowConcurrencyTesting
[670/695] Emitting module WorkflowReactiveSwiftTesting
[671/695] Compiling WorkflowReactiveSwiftTesting WorkerTesting.swift
[672/695] Compiling WorkflowCombineTesting PublisherTesting.swift
[673/695] Compiling WorkflowCombineTesting WorkerTesting.swift
[674/695] Emitting module WorkflowCombineTesting
[675/695] Compiling SwiftParserDiagnostics Utils.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
[676/695] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.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
[677/695] Compiling SwiftParserDiagnostics PresenceUtils.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
[678/695] Compiling WorkflowRxSwiftTesting WorkerTesting.swift
[679/695] Emitting module WorkflowRxSwiftTesting
[680/695] Compiling WorkflowRxSwiftTesting ObservableTesting.swift
[681/695] Compiling SwiftParserDiagnostics SyntaxExtensions.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
[682/695] Compiling SwiftParserDiagnostics DiagnosticExtensions.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
[683/695] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.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
[684/695] Emitting module SwiftParserDiagnostics
<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
[685/695] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.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
[686/695] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.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
[687/695] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.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
[688/695] Compiling SwiftParserDiagnostics MissingNodesError.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
[689/695] Compiling SwiftParserDiagnostics MissingTokenError.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
[690/710] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.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
[691/710] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.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
[692/711] Compiling SwiftSyntaxBuilder ConvenienceInitializers.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
[693/711] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.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
[694/711] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.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
[695/711] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.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
[696/711] Compiling SwiftSyntaxBuilder Indenter.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
[697/711] Compiling SwiftSyntaxBuilder ListBuilder.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
[698/711] Emitting module SwiftSyntaxBuilder
<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
[699/711] Compiling SwiftSyntaxBuilder ResultBuilders.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
[700/711] Compiling SwiftSyntaxBuilder BuildableNodes.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
[701/711] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.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
[702/711] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.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
[703/711] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.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
[704/711] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.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
[705/711] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.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
[706/729] Compiling SwiftSyntaxMacros Macro.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
[707/729] Compiling SwiftSyntaxMacros MemberAttributeMacro.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
[708/729] Compiling SwiftSyntaxMacros PreambleMacro.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
[709/729] Compiling SwiftSyntaxMacros ExpressionMacro.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
[710/729] Compiling SwiftSyntaxMacros ExtensionMacro.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
[711/729] Compiling SwiftSyntaxMacros FreestandingMacro.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
[712/729] Compiling SwiftSyntaxMacros Macro+Format.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
[713/729] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.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
[714/729] Compiling SwiftSyntaxMacros AccessorMacro.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
[715/729] Compiling SwiftSyntaxMacros AbstractSourceLocation.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
[716/729] Compiling SwiftSyntaxMacros MacroExpansionContext.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
[717/729] Compiling SwiftSyntaxMacros MemberMacro.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
[718/729] Compiling SwiftSyntaxMacros PeerMacro.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
[719/729] Compiling SwiftSyntaxMacros CodeItemMacro.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
[720/729] Compiling SwiftSyntaxMacros DeclarationMacro.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
[721/729] Emitting module SwiftSyntaxMacros
<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
[722/729] Compiling SwiftSyntaxMacros AttachedMacro.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
[723/729] Compiling SwiftSyntaxMacros BodyMacro.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
[724/730] Compiling SwiftSyntaxMacros Syntax+LexicalContext.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
[725/740] Compiling SwiftSyntaxMacroExpansion IndentationUtils.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
[726/740] Compiling SwiftSyntaxMacroExpansion MacroReplacement.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
[727/740] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.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
[728/740] Compiling SwiftSyntaxMacroExpansion MacroExpansion.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
[729/740] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.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
[730/740] Compiling SwiftSyntaxMacroExpansion MacroArgument.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
[731/740] Emitting module SwiftSyntaxMacroExpansion
<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
[732/740] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.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
[733/740] Compiling SwiftSyntaxMacroExpansion MacroSystem.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
[734/740] Compiling SwiftSyntaxMacroExpansion MacroSpec.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
[735/752] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.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
[736/752] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.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
[737/752] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.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
[738/752] Compiling SwiftCompilerPluginMessageHandling Macros.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
[739/752] Compiling SwiftCompilerPluginMessageHandling LRUCache.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
[740/752] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.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
[741/752] Compiling SwiftCompilerPluginMessageHandling JSON.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
[742/752] Emitting module SwiftCompilerPluginMessageHandling
<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
[743/752] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.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
[744/752] Compiling SwiftCompilerPluginMessageHandling PluginMessages.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
[745/752] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.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
[746/752] Compiling SwiftCompilerPluginMessageHandling Diagnostics.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
[747/753] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.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
[748/755] Compiling SwiftCompilerPlugin CompilerPlugin.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
[749/755] Emitting module SwiftCompilerPlugin
<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
[750/768] Emitting module PerceptionMacros
[751/768] Emitting module WorkflowSwiftUIMacros
[752/768] Compiling PerceptionMacros Extensions.swift
[753/768] Compiling PerceptionMacros Plugins.swift
[754/768] Compiling PerceptionMacros Availability.swift
[755/768] Compiling PerceptionMacros PerceptibleMacro.swift
[755/768] Write Objects.LinkFileList
[757/768] Compiling WorkflowSwiftUIMacros Plugins.swift
[758/768] 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 | }
[759/768] Compiling WorkflowSwiftUIMacros Availability.swift
[760/768] 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(
[760/768] Write Objects.LinkFileList
[762/768] Emitting module CasePathsMacros
<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
[763/768] Compiling CasePathsMacros Plugin.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
[764/768] Compiling CasePathsMacros CasePathableMacro.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
[764/768] Write Objects.LinkFileList
[765/768] Linking CasePathsMacros-tool
[766/768] Linking WorkflowSwiftUIMacros-tool
[767/768] Linking PerceptionMacros-tool
[769/778] Compiling CasePaths LockIsolated.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
[770/778] Compiling CasePaths Exports.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
[771/778] Compiling CasePaths XCTestSupport.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
[772/778] Compiling CasePaths Deprecations.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
[773/778] Compiling CasePaths Macros.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
[774/778] Compiling CasePaths EnumReflection.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
[775/778] Emitting module CasePaths
<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
[776/778] Emitting module Perception
[777/778] Compiling Perception Exports.swift
[778/778] Compiling Perception Macros.swift
[779/794] Compiling WorkflowSwiftUI AreOrderedSetsDuplicates.swift
[780/794] Compiling WorkflowSwiftUI ObservableState.swift
[781/795] Compiling WorkflowSwiftUI Workflow+Preview.swift
[782/795] Compiling WorkflowSwiftUI ActionModel.swift
[783/795] Compiling WorkflowSwiftUI Bindable+Store.swift
[784/795] Compiling WorkflowSwiftUI ObservableScreen+Preview.swift
[785/795] Compiling WorkflowSwiftUI ObservableScreen.swift
[786/795] Compiling WorkflowSwiftUI Macros.swift
[787/795] Compiling WorkflowSwiftUI ObservableModel.swift
[788/795] Compiling WorkflowSwiftUI RenderContext+ObservableModel.swift
[789/795] Compiling WorkflowSwiftUI StateAccessor.swift
[790/795] Compiling WorkflowSwiftUI UIViewController+Orientation.swift
[791/795] Compiling WorkflowSwiftUI Store+Preview.swift
[792/795] Compiling WorkflowSwiftUI Store.swift
[793/795] Compiling WorkflowSwiftUI ObservationStateRegistrar.swift
[794/795] Compiling WorkflowSwiftUI Exports.swift
[795/795] Emitting module WorkflowSwiftUI
Build complete! (37.67s)
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" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-perception"
},
{
"identity" : "swift-custom-dump",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.3",
"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" : "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" : "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" : "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" : "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" : "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" : "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",
"AsyncSequenceWorker.swift",
"Logger.swift",
"Worker.swift"
],
"target_dependencies" : [
"Workflow"
],
"type" : "library"
},
{
"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",
"RuntimeConfiguration.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.