The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of reactiveswift-composable-architecture, reference 0.50.0 (c3f39b), with Swift 6.1 for iOS using Xcode 16.3 on 27 Apr 2025 09:09:12 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ComposableArchitecture -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

SwiftCompile normal arm64 Compiling\ Throttling.swift,\ Timer.swift,\ SignalProducer.swift,\ TaskResult.swift,\ Binding+IsPresent.swift,\ Box.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Timer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/TaskResult.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Box.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: warning: var 'throttleTimes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleTimes: [AnyHashable: Any] = [:]
    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: convert 'throttleTimes' to a 'let' constant to make 'Sendable' shared state immutable
var throttleTimes: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: add '@MainActor' to make var 'throttleTimes' part of global actor 'MainActor'
var throttleTimes: [AnyHashable: Any] = [:]
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleTimes: [AnyHashable: Any] = [:]
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: warning: var 'throttleValues' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleValues: [AnyHashable: Any] = [:]
    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: convert 'throttleValues' to a 'let' constant to make 'Sendable' shared state immutable
var throttleValues: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: add '@MainActor' to make var 'throttleValues' part of global actor 'MainActor'
var throttleValues: [AnyHashable: Any] = [:]
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleValues: [AnyHashable: Any] = [:]
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Timer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:351:8: warning: 'Effect' is deprecated: 'Effect' has been deprecated in favor of 'EffectTask' when 'Failure == Never', or 'EffectProducer<Output, Failure>' in general.
You are encouraged to use 'EffectTask<Action>' to model the output of your reducers, and to use Swift concurrency to model failable streams of values.
To find and replace instances of 'Effect<Action, Never>' to 'EffectTask<Action, Never>' in your codebase, use the following regular expression:
  Find:
    Effect<([^,]+), Never>
  Replace:
    EffectTask<$1>
See the migration roadmap for more information: https://github.com/pointfreeco/swift-composable-architecture/discussions/1477
  ) -> Effect<NewValue, NewError> {
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:326:11: warning: 'Effect' is deprecated: 'Effect' has been deprecated in favor of 'EffectTask' when 'Failure == Never', or 'EffectProducer<Output, Failure>' in general.
You are encouraged to use 'EffectTask<Action>' to model the output of your reducers, and to use Swift concurrency to model failable streams of values.
To find and replace instances of 'Effect<Action, Never>' to 'EffectTask<Action, Never>' in your codebase, use the following regular expression:
  Find:
    Effect<([^,]+), Never>
  Replace:
    EffectTask<$1>
See the migration roadmap for more information: https://github.com/pointfreeco/swift-composable-architecture/discussions/1477
extension Effect {
          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:675:11: warning: capture of 'disposable' with non-sendable type 'any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
          disposable.dispose()
          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Disposable.swift:11:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
public protocol Disposable: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
import ReactiveSwift
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:697:11: warning: capture of 'disposable' with non-sendable type 'any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
          disposable.dispose()
          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Disposable.swift:11:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
public protocol Disposable: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:18:19: warning: sending 'observer' risks causing data races; this is an error in the Swift 6 language mode
          defer { observer.sendCompleted() }
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:18:19: note: task-isolated 'observer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
          defer { observer.sendCompleted() }
                  ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:666:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
            continuation.yield(value)
            ~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:666:26: note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
            continuation.yield(value)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:688:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
            continuation.yield(value)
            ~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:688:26: note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
            continuation.yield(value)
                         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/TaskResult.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift:7:16: warning: capture of 'self' with non-sendable type 'Binding<Optional<Wrapped>>' in a '@Sendable' closure
        get: { self.wrappedValue != nil },
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift:5:20: note: consider making generic parameter 'Wrapped' conform to the 'Sendable' protocol
    func isPresent<Wrapped>() -> Binding<Bool> where Value == Wrapped? {
                   ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift:10:11: warning: capture of 'self' with non-sendable type 'Binding<Optional<Wrapped>>' in a '@Sendable' closure
          self.transaction(transaction).wrappedValue = nil
          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift:5:20: note: consider making generic parameter 'Wrapped' conform to the 'Sendable' protocol
    func isPresent<Wrapped>() -> Binding<Bool> where Value == Wrapped? {
                   ^
                          : Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Box.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744948848054-swift-frontend-ComposableArchitecture-Throttling.swift-arm64_apple_ios13.0-o-Onone-1489389636.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6962 seconds (0.8047 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0624 ( 14.2%)   0.0914 ( 35.4%)   0.1537 ( 22.1%)   0.1552 ( 19.3%)  parse-and-resolve-imports
   0.0571 ( 13.0%)   0.0861 ( 33.4%)   0.1432 ( 20.6%)   0.1446 ( 18.0%)  Import resolution
   0.0730 ( 16.6%)   0.0177 (  6.9%)   0.0907 ( 13.0%)   0.1259 ( 15.6%)  perform-sema
   0.0726 ( 16.6%)   0.0177 (  6.9%)   0.0902 ( 13.0%)   0.1254 ( 15.6%)  Type checking and Semantic analysis
   0.0532 ( 12.1%)   0.0123 (  4.8%)   0.0656 (  9.4%)   0.0663 (  8.2%)  typecheck-stmt
   0.0167 (  3.8%)   0.0049 (  1.9%)   0.0216 (  3.1%)   0.0560 (  7.0%)  typecheck-decl
   0.0272 (  6.2%)   0.0084 (  3.3%)   0.0356 (  5.1%)   0.0357 (  4.4%)  IRGen
   0.0202 (  4.6%)   0.0024 (  0.9%)   0.0226 (  3.3%)   0.0227 (  2.8%)  SILGen
   0.0144 (  3.3%)   0.0018 (  0.7%)   0.0162 (  2.3%)   0.0162 (  2.0%)  SILGen-function
   0.0101 (  2.3%)   0.0030 (  1.2%)   0.0131 (  1.9%)   0.0131 (  1.6%)  precheck-target
   0.0116 (  2.7%)   0.0001 (  0.1%)   0.0118 (  1.7%)   0.0118 (  1.5%)  SIL optimization
   0.0086 (  2.0%)   0.0028 (  1.1%)   0.0114 (  1.6%)   0.0114 (  1.4%)  build-rewrite-system
   0.0068 (  1.6%)   0.0023 (  0.9%)   0.0091 (  1.3%)   0.0091 (  1.1%)  typecheck-expr
   0.0029 (  0.7%)   0.0041 (  1.6%)   0.0069 (  1.0%)   0.0069 (  0.9%)  import-clang-decl
   0.0011 (  0.3%)   0.0027 (  1.1%)   0.0038 (  0.5%)   0.0038 (  0.5%)  load-stdlib
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  module-populate-cache
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.4383 (100.0%)   0.2579 (100.0%)   0.6962 (100.0%)   0.8047 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4853 seconds (0.5251 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.3344 (100.0%)   0.1510 (100.0%)   0.4853 (100.0%)   0.5251 (100.0%)  Building Target
   0.3344 (100.0%)   0.1510 (100.0%)   0.4853 (100.0%)   0.5251 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ MainQueue.swift,\ Effect.swift,\ Animation.swift,\ Cancellation.swift,\ Debouncing.swift,\ Deferring.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Debouncing.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Deferring.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: warning: static property 'liveValue' is not concurrency-safe because non-'Sendable' type 'any DateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
    static let liveValue = QueueScheduler.main as DateScheduler
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
import ReactiveSwift
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: note: add '@MainActor' to make static property 'liveValue' part of global actor 'MainActor'
    static let liveValue = QueueScheduler.main as DateScheduler
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let liveValue = QueueScheduler.main as DateScheduler
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: warning: static property 'testValue' is not concurrency-safe because non-'Sendable' type 'any DateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
    static let testValue = UnimplementedScheduler() as DateScheduler
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: note: add '@MainActor' to make static property 'testValue' part of global actor 'MainActor'
    static let testValue = UnimplementedScheduler() as DateScheduler
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let testValue = UnimplementedScheduler() as DateScheduler
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:92:11: warning: type 'any DateScheduler' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    get { self[MainQueueKey.self] }
          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:93:11: warning: type 'any DateScheduler' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    set { self[MainQueueKey.self] = newValue }
          ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
                  send(transform(action))
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                  send(transform(action))
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: capture of 'transform' with non-sendable type '(Action) -> T' in an isolated closure; this is an error in the Swift 6 language mode
                  send(transform(action))
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                  send(transform(action))
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: sending 'transform' risks causing data races; this is an error in the Swift 6 language mode
                  send(transform(action))
~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: task-isolated 'transform' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                  send(transform(action))
                       ^~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Animation.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Animation.swift:66:33: warning: capture of 'transaction' with non-sendable type 'Transaction' in a '@Sendable' closure; this is an error in the Swift 6 language mode
                withTransaction(transaction) {
                                ^
SwiftUICore.Transaction:2:23: note: struct 'Transaction' does not conform to the 'Sendable' protocol
@frozen public struct Transaction {
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:4:1: warning: extension declares a conformance of imported type 'AnyDisposable' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'ReactiveSwift' introduce this conformance in the future
extension AnyDisposable: Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:4:1: note: add '@retroactive' to silence this warning
extension AnyDisposable: Hashable {
^                        ~~~~~~~~
                         @retroactive Hashable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:211:15: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
  public func withTaskCancellation<T: Sendable>(
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:286:15: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
  public func withTaskCancellation<T: Sendable>(
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: warning: var '_cancellationCancellables' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: convert '_cancellationCancellables' to a 'let' constant to make 'Sendable' shared state immutable
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
                        ~~~ ^
                        let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: add '@MainActor' to make var '_cancellationCancellables' part of global actor 'MainActor'
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
                            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
                            ^
                 nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:98:42: warning: capture of 'id' with non-sendable type 'AnyHashable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
          await withTaskCancellation(id: id, cancelInFlight: cancelInFlight) {
                                         ^
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
@frozen public struct AnyHashable {
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Debouncing.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Deferring.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744948854156-swift-frontend-ComposableArchitecture-MainQueue.swift-arm64_apple_ios13.0-o-Onone-3629295411.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8002 seconds (0.8242 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0608 ( 11.6%)   0.0941 ( 34.3%)   0.1548 ( 19.3%)   0.1572 ( 19.1%)  parse-and-resolve-imports
   0.0558 ( 10.6%)   0.0893 ( 32.5%)   0.1450 ( 18.1%)   0.1473 ( 17.9%)  Import resolution
   0.0904 ( 17.2%)   0.0207 (  7.5%)   0.1111 ( 13.9%)   0.1146 ( 13.9%)  perform-sema
   0.0900 ( 17.1%)   0.0207 (  7.5%)   0.1106 ( 13.8%)   0.1141 ( 13.8%)  Type checking and Semantic analysis
   0.0592 ( 11.3%)   0.0120 (  4.4%)   0.0712 (  8.9%)   0.0728 (  8.8%)  typecheck-stmt
   0.0369 (  7.0%)   0.0086 (  3.1%)   0.0455 (  5.7%)   0.0473 (  5.7%)  typecheck-decl
   0.0344 (  6.5%)   0.0089 (  3.2%)   0.0433 (  5.4%)   0.0471 (  5.7%)  IRGen
   0.0275 (  5.2%)   0.0023 (  0.8%)   0.0298 (  3.7%)   0.0309 (  3.7%)  SILGen
   0.0215 (  4.1%)   0.0038 (  1.4%)   0.0253 (  3.2%)   0.0255 (  3.1%)  typecheck-expr
   0.0199 (  3.8%)   0.0014 (  0.5%)   0.0213 (  2.7%)   0.0218 (  2.6%)  SILGen-function
   0.0114 (  2.2%)   0.0003 (  0.1%)   0.0117 (  1.5%)   0.0135 (  1.6%)  SIL optimization
   0.0054 (  1.0%)   0.0021 (  0.8%)   0.0075 (  0.9%)   0.0091 (  1.1%)  build-rewrite-system
   0.0036 (  0.7%)   0.0050 (  1.8%)   0.0086 (  1.1%)   0.0087 (  1.1%)  import-clang-decl
   0.0069 (  1.3%)   0.0008 (  0.3%)   0.0077 (  1.0%)   0.0077 (  0.9%)  precheck-target
   0.0016 (  0.3%)   0.0048 (  1.7%)   0.0064 (  0.8%)   0.0064 (  0.8%)  load-stdlib
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.5256 (100.0%)   0.2746 (100.0%)   0.8002 (100.0%)   0.8242 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6183 seconds (0.6476 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.4544 (100.0%)   0.1639 (100.0%)   0.6183 (100.0%)   0.6476 (100.0%)  Building Target
   0.4544 (100.0%)   0.1639 (100.0%)   0.6183 (100.0%)   0.6476 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ Breakpoint.swift,\ CurrentValueRelay.swift,\ Debug.swift,\ Deprecations.swift,\ Exports.swift,\ Locking.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Breakpoint.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/CurrentValueRelay.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Debug.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Locking.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Breakpoint.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/CurrentValueRelay.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Debug.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:53:3: warning: extension declares a conformance of imported type 'TextState' to imported protocol 'View'; this will not behave correctly if the owners of '_SwiftUINavigationState' introduce this conformance in the future
  extension TextState: View {
  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:53:3: note: add '@retroactive' to silence this warning
  extension TextState: View {
  ^                    ~~~~
                       @retroactive View
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:563:36: warning: non-sendable result type 'Action' cannot be sent from nonisolated context in call to parameter 'operation'; this is an error in the Swift 6 language mode
            let output = try await operation()
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:58:30: note: consider making generic parameter 'Action' conform to the 'Sendable' protocol
public struct EffectProducer<Action, Failure: Error> {
                             ^
                                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:41:22: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
    return try await operation(&value)
                     ^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:41:22: note: sending 'self'-isolated 'value' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
    return try await operation(&value)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:565:13: warning: sending 'observer' risks causing data races; this is an error in the Swift 6 language mode
            observer.send(value: output)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:565:13: note: task-isolated 'observer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            observer.send(value: output)
            ^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Exports.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Locking.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744948851305-swift-frontend-ComposableArchitecture-Breakpoint.swift-arm64_apple_ios13.0-o-Onone-1055997249.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 1.2346 seconds (1.2674 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1635 ( 18.4%)   0.0339 (  9.8%)   0.1974 ( 16.0%)   0.2004 ( 15.8%)  perform-sema
   0.1631 ( 18.4%)   0.0338 (  9.8%)   0.1969 ( 15.9%)   0.1999 ( 15.8%)  Type checking and Semantic analysis
   0.0625 (  7.0%)   0.0922 ( 26.6%)   0.1547 ( 12.5%)   0.1581 ( 12.5%)  parse-and-resolve-imports
   0.1236 ( 13.9%)   0.0254 (  7.3%)   0.1490 ( 12.1%)   0.1505 ( 11.9%)  typecheck-stmt
   0.0577 (  6.5%)   0.0881 ( 25.5%)   0.1459 ( 11.8%)   0.1492 ( 11.8%)  Import resolution
   0.0855 (  9.6%)   0.0179 (  5.2%)   0.1034 (  8.4%)   0.1051 (  8.3%)  typecheck-expr
   0.0686 (  7.7%)   0.0154 (  4.5%)   0.0840 (  6.8%)   0.0861 (  6.8%)  typecheck-decl
   0.0417 (  4.7%)   0.0084 (  2.4%)   0.0501 (  4.1%)   0.0622 (  4.9%)  IRGen
   0.0314 (  3.5%)   0.0083 (  2.4%)   0.0397 (  3.2%)   0.0404 (  3.2%)  precheck-target
   0.0327 (  3.7%)   0.0036 (  1.0%)   0.0363 (  2.9%)   0.0371 (  2.9%)  SILGen
   0.0205 (  2.3%)   0.0023 (  0.7%)   0.0228 (  1.8%)   0.0233 (  1.8%)  SILGen-function
   0.0163 (  1.8%)   0.0047 (  1.3%)   0.0210 (  1.7%)   0.0214 (  1.7%)  build-rewrite-system
   0.0082 (  0.9%)   0.0087 (  2.5%)   0.0168 (  1.4%)   0.0169 (  1.3%)  import-clang-decl
   0.0111 (  1.3%)   0.0001 (  0.0%)   0.0112 (  0.9%)   0.0114 (  0.9%)  SIL optimization
   0.0012 (  0.1%)   0.0028 (  0.8%)   0.0041 (  0.3%)   0.0041 (  0.3%)  load-stdlib
   0.0004 (  0.0%)   0.0005 (  0.1%)   0.0009 (  0.1%)   0.0009 (  0.1%)  load-all-members
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.8883 (100.0%)   0.3462 (100.0%)   1.2346 (100.0%)   1.2674 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6555 seconds (0.6837 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.4849 (100.0%)   0.1706 (100.0%)   0.6555 (100.0%)   0.6837 (100.0%)  Building Target
   0.4849 (100.0%)   0.1706 (100.0%)   0.6555 (100.0%)   0.6837 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ OpenExistential.swift,\ RuntimeWarnings.swift,\ TaskCancellableValue.swift,\ TypeName.swift,\ AnyReducer.swift,\ AnyReducerBinding.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/OpenExistential.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/TaskCancellableValue.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/TypeName.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerBinding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744948853494-swift-frontend-ComposableArchitecture-OpenExistential.swift-arm64_apple_ios13.0-o-Onone-3638229228.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6788 seconds (0.6913 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0608 ( 15.0%)   0.0957 ( 35.1%)   0.1564 ( 23.0%)   0.1580 ( 22.9%)  parse-and-resolve-imports
   0.0558 ( 13.7%)   0.0909 ( 33.3%)   0.1467 ( 21.6%)   0.1482 ( 21.4%)  Import resolution
   0.0608 ( 15.0%)   0.0177 (  6.5%)   0.0785 ( 11.6%)   0.0806 ( 11.7%)  perform-sema
   0.0604 ( 14.9%)   0.0176 (  6.4%)   0.0779 ( 11.5%)   0.0800 ( 11.6%)  Type checking and Semantic analysis
   0.0385 (  9.5%)   0.0105 (  3.9%)   0.0490 (  7.2%)   0.0508 (  7.3%)  typecheck-stmt
   0.0227 (  5.6%)   0.0077 (  2.8%)   0.0304 (  4.5%)   0.0308 (  4.5%)  IRGen
   0.0215 (  5.3%)   0.0071 (  2.6%)   0.0285 (  4.2%)   0.0289 (  4.2%)  typecheck-decl
   0.0183 (  4.5%)   0.0061 (  2.2%)   0.0243 (  3.6%)   0.0247 (  3.6%)  typecheck-expr
   0.0150 (  3.7%)   0.0053 (  2.0%)   0.0203 (  3.0%)   0.0223 (  3.2%)  build-rewrite-system
   0.0195 (  4.8%)   0.0019 (  0.7%)   0.0214 (  3.1%)   0.0216 (  3.1%)  SILGen
   0.0132 (  3.3%)   0.0012 (  0.4%)   0.0144 (  2.1%)   0.0146 (  2.1%)  SILGen-function
   0.0084 (  2.1%)   0.0019 (  0.7%)   0.0104 (  1.5%)   0.0103 (  1.5%)  precheck-target
   0.0033 (  0.8%)   0.0043 (  1.6%)   0.0076 (  1.1%)   0.0076 (  1.1%)  import-clang-decl
   0.0064 (  1.6%)   0.0001 (  0.1%)   0.0066 (  1.0%)   0.0067 (  1.0%)  SIL optimization
   0.0014 (  0.3%)   0.0046 (  1.7%)   0.0060 (  0.9%)   0.0060 (  0.9%)  load-stdlib
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.4062 (100.0%)   0.2727 (100.0%)   0.6788 (100.0%)   0.6913 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4239 seconds (0.4289 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.2722 (100.0%)   0.1517 (100.0%)   0.4239 (100.0%)   0.4289 (100.0%)  Building Target
   0.2722 (100.0%)   0.1517 (100.0%)   0.4239 (100.0%)   0.4289 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/OpenExistential.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: warning: let 'dso' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer' may have shared mutable state; this is an error in the Swift 6 language mode
    let dso = { () -> UnsafeMutableRawPointer in
        ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: note: add '@MainActor' to make let 'dso' part of global actor 'MainActor'
    let dso = { () -> UnsafeMutableRawPointer in
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    let dso = { () -> UnsafeMutableRawPointer in
        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:26:11: warning: cannot use conformance of 'String' to 'CVarArg' here; 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
          message
          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:26:11: note: The missing import of module 'Foundation' will be added implicitly
          message
          ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/TaskCancellableValue.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/TypeName.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerBinding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftEmitModule normal arm64 Emitting\ module\ for\ ComposableArchitecture (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
EmitSwiftModule normal arm64 (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: warning: static property 'liveValue' is not concurrency-safe because non-'Sendable' type 'any DateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
    static let liveValue = QueueScheduler.main as DateScheduler
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
import ReactiveSwift
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: note: add '@MainActor' to make static property 'liveValue' part of global actor 'MainActor'
    static let liveValue = QueueScheduler.main as DateScheduler
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let liveValue = QueueScheduler.main as DateScheduler
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: warning: static property 'testValue' is not concurrency-safe because non-'Sendable' type 'any DateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
    static let testValue = UnimplementedScheduler() as DateScheduler
               ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: note: add '@MainActor' to make static property 'testValue' part of global actor 'MainActor'
    static let testValue = UnimplementedScheduler() as DateScheduler
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let testValue = UnimplementedScheduler() as DateScheduler
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
                  send(transform(action))
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                  send(transform(action))
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: capture of 'transform' with non-sendable type '(Action) -> T' in an isolated closure; this is an error in the Swift 6 language mode
                  send(transform(action))
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                  send(transform(action))
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:4:1: warning: extension declares a conformance of imported type 'AnyDisposable' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'ReactiveSwift' introduce this conformance in the future
extension AnyDisposable: Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:4:1: note: add '@retroactive' to silence this warning
extension AnyDisposable: Hashable {
^                        ~~~~~~~~
                         @retroactive Hashable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:211:15: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
  public func withTaskCancellation<T: Sendable>(
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:286:15: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
  public func withTaskCancellation<T: Sendable>(
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: warning: var '_cancellationCancellables' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: convert '_cancellationCancellables' to a 'let' constant to make 'Sendable' shared state immutable
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
                        ~~~ ^
                        let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: add '@MainActor' to make var '_cancellationCancellables' part of global actor 'MainActor'
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
                            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
                            ^
                 nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: warning: var 'throttleTimes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleTimes: [AnyHashable: Any] = [:]
    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: convert 'throttleTimes' to a 'let' constant to make 'Sendable' shared state immutable
var throttleTimes: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: add '@MainActor' to make var 'throttleTimes' part of global actor 'MainActor'
var throttleTimes: [AnyHashable: Any] = [:]
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleTimes: [AnyHashable: Any] = [:]
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: warning: var 'throttleValues' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleValues: [AnyHashable: Any] = [:]
    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: convert 'throttleValues' to a 'let' constant to make 'Sendable' shared state immutable
var throttleValues: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: add '@MainActor' to make var 'throttleValues' part of global actor 'MainActor'
var throttleValues: [AnyHashable: Any] = [:]
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleValues: [AnyHashable: Any] = [:]
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:351:8: warning: 'Effect' is deprecated: 'Effect' has been deprecated in favor of 'EffectTask' when 'Failure == Never', or 'EffectProducer<Output, Failure>' in general.
You are encouraged to use 'EffectTask<Action>' to model the output of your reducers, and to use Swift concurrency to model failable streams of values.
To find and replace instances of 'Effect<Action, Never>' to 'EffectTask<Action, Never>' in your codebase, use the following regular expression:
  Find:
    Effect<([^,]+), Never>
  Replace:
    EffectTask<$1>
See the migration roadmap for more information: https://github.com/pointfreeco/swift-composable-architecture/discussions/1477
  ) -> Effect<NewValue, NewError> {
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:326:11: warning: 'Effect' is deprecated: 'Effect' has been deprecated in favor of 'EffectTask' when 'Failure == Never', or 'EffectProducer<Output, Failure>' in general.
You are encouraged to use 'EffectTask<Action>' to model the output of your reducers, and to use Swift concurrency to model failable streams of values.
To find and replace instances of 'Effect<Action, Never>' to 'EffectTask<Action, Never>' in your codebase, use the following regular expression:
  Find:
    Effect<([^,]+), Never>
  Replace:
    EffectTask<$1>
See the migration roadmap for more information: https://github.com/pointfreeco/swift-composable-architecture/discussions/1477
extension Effect {
          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:53:3: warning: extension declares a conformance of imported type 'TextState' to imported protocol 'View'; this will not behave correctly if the owners of '_SwiftUINavigationState' introduce this conformance in the future
  extension TextState: View {
  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:53:3: note: add '@retroactive' to silence this warning
  extension TextState: View {
  ^                    ~~~~
                       @retroactive View
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: warning: let 'dso' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer' may have shared mutable state; this is an error in the Swift 6 language mode
    let dso = { () -> UnsafeMutableRawPointer in
        ^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: note: add '@MainActor' to make let 'dso' part of global actor 'MainActor'
    let dso = { () -> UnsafeMutableRawPointer in
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    let dso = { () -> UnsafeMutableRawPointer in
        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:26:11: warning: cannot use conformance of 'String' to 'CVarArg' here; 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
          message
          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:26:11: note: The missing import of module 'Foundation' will be added implicitly
          message
          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:658:18: warning: generic parameter 'ScopedState' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:601:28: note: 'ScopedState' previously declared here
    RootState, RootAction, ScopedState, ScopedAction
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:658:31: warning: generic parameter 'ScopedAction' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:601:41: note: 'ScopedAction' previously declared here
    RootState, RootAction, ScopedState, ScopedAction
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:84:16: warning: main actor-isolated property 'data' cannot be used to satisfy nonisolated requirement from protocol 'DynamicViewContent'; this is an error in the Swift 6 language mode
    public let data: Data
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:83:6: note: add '@preconcurrency' to the 'DynamicViewContent' conformance to defer isolation checking to run time
  >: DynamicViewContent {
     ^
     @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'Exhaustivity' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let off = Self.off(showSkippedAssertions: false)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2376:13: note: consider making enum 'Exhaustivity' conform to the 'Sendable' protocol
public enum Exhaustivity: Equatable {
            ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: note: add '@MainActor' to make static property 'off' part of global actor 'MainActor'
  public static let off = Self.off(showSkippedAssertions: false)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let off = Self.off(showSkippedAssertions: false)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift:7:1: warning: extension declares a conformance of imported type 'ImmediateScheduler' to imported protocol 'DateScheduler'; this will not behave correctly if the owners of 'ReactiveSwift' introduce this conformance in the future
extension ReactiveSwift.ImmediateScheduler: DateScheduler {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift:7:1: note: add '@retroactive' to silence this warning
extension ReactiveSwift.ImmediateScheduler: DateScheduler {
^                                           ~~~~~~~~~~~~~
                                            @retroactive DateScheduler
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: sending 'transform' risks causing data races; this is an error in the Swift 6 language mode
                  send(transform(action))
~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: task-isolated 'transform' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                  send(transform(action))
                       ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:18:19: warning: sending 'observer' risks causing data races; this is an error in the Swift 6 language mode
          defer { observer.sendCompleted() }
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:18:19: note: task-isolated 'observer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
          defer { observer.sendCompleted() }
                  ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744948842570-swift-frontend-ComposableArchitecture-all-arm64_apple_ios13.0-swiftmodule-Onone-2729717790.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 1.6232 seconds (1.7653 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.2665 ( 22.0%)   0.0540 ( 13.0%)   0.3205 ( 19.7%)   0.3617 ( 20.5%)  perform-sema
   0.2651 ( 21.9%)   0.0536 ( 12.9%)   0.3187 ( 19.6%)   0.3599 ( 20.4%)  Type checking and Semantic analysis
   0.2142 ( 17.7%)   0.0431 ( 10.4%)   0.2573 ( 15.9%)   0.2981 ( 16.9%)  typecheck-decl
   0.0631 (  5.2%)   0.0948 ( 22.9%)   0.1579 (  9.7%)   0.1599 (  9.1%)  parse-and-resolve-imports
   0.0575 (  4.8%)   0.0896 ( 21.6%)   0.1471 (  9.1%)   0.1491 (  8.4%)  Import resolution
   0.0705 (  5.8%)   0.0119 (  2.9%)   0.0824 (  5.1%)   0.0928 (  5.3%)  SILGen
   0.0737 (  6.1%)   0.0177 (  4.3%)   0.0915 (  5.6%)   0.0924 (  5.2%)  typecheck-stmt
   0.0544 (  4.5%)   0.0167 (  4.0%)   0.0711 (  4.4%)   0.0719 (  4.1%)  typecheck-expr
   0.0409 (  3.4%)   0.0046 (  1.1%)   0.0455 (  2.8%)   0.0455 (  2.6%)  SIL optimization
   0.0327 (  2.7%)   0.0042 (  1.0%)   0.0369 (  2.3%)   0.0391 (  2.2%)  SILGen-function
   0.0245 (  2.0%)   0.0063 (  1.5%)   0.0308 (  1.9%)   0.0312 (  1.8%)  build-rewrite-system
   0.0078 (  0.6%)   0.0091 (  2.2%)   0.0169 (  1.0%)   0.0169 (  1.0%)  import-clang-decl
   0.0118 (  1.0%)   0.0039 (  0.9%)   0.0157 (  1.0%)   0.0159 (  0.9%)  precheck-target
   0.0109 (  0.9%)   0.0014 (  0.3%)   0.0122 (  0.8%)   0.0122 (  0.7%)  Serialization, swiftmodule
   0.0067 (  0.6%)   0.0004 (  0.1%)   0.0071 (  0.4%)   0.0071 (  0.4%)  Serialization, swiftdoc
   0.0061 (  0.5%)   0.0005 (  0.1%)   0.0066 (  0.4%)   0.0066 (  0.4%)  Serialization, swiftsourceinfo
   0.0011 (  0.1%)   0.0025 (  0.6%)   0.0036 (  0.2%)   0.0037 (  0.2%)  load-stdlib
   0.0005 (  0.0%)   0.0000 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  associated-type-inference
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  module-populate-cache
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  SIL verification, pre-optimization
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  source-file-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  load-all-members
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-module-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   1.2088 (100.0%)   0.4144 (100.0%)   1.6232 (100.0%)   1.7653 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6615 seconds (0.7155 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.4872 (100.0%)   0.1743 (100.0%)   0.6615 (100.0%)   0.7155 (100.0%)  Building Target
   0.4872 (100.0%)   0.1743 (100.0%)   0.6615 (100.0%)   0.7155 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ Store.swift,\ ActionWrappingScheduler.swift,\ Alert.swift,\ Binding.swift,\ ConfirmationDialog.swift,\ ForEachStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ActionWrappingScheduler.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Alert.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ConfirmationDialog.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:658:18: warning: generic parameter 'ScopedState' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:601:28: note: 'ScopedState' previously declared here
    RootState, RootAction, ScopedState, ScopedAction
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:658:31: warning: generic parameter 'ScopedAction' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:601:41: note: 'ScopedAction' previously declared here
    RootState, RootAction, ScopedState, ScopedAction
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:441:21: warning: capture of 'tasks' with non-sendable type 'Box<[Task<Void, Never>]>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        var index = tasks.wrappedValue.startIndex
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Box.swift:1:13: note: generic class 'Box' does not conform to the 'Sendable' protocol
final class Box<Wrapped> {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:411:13: warning: sending 'effectDisposable' risks causing data races; this is an error in the Swift 6 language mode
            effectDisposable.dispose()
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:411:13: note: task-isolated 'effectDisposable' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            effectDisposable.dispose()
            ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:419:36: 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
          Task(priority: priority) {
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:31: note: closure captures 'self' which is accessible to code in the current task
                if let task = self.send($0, originatingFrom: action) {
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:433:17: 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
    return Task {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:435:21: note: closure captures 'tasks' which is accessible to code in the current task
        var index = tasks.wrappedValue.startIndex
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:31: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                if let task = self.send($0, originatingFrom: action) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:31: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                if let task = self.send($0, originatingFrom: action) {
                              ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:62: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
                if let task = self.send($0, originatingFrom: action) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:62: note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                if let task = self.send($0, originatingFrom: action) {
                                                             ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:423:19: warning: sending 'tasks' risks causing data races; this is an error in the Swift 6 language mode
                  tasks.wrappedValue.append(task)
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:423:19: note: task-isolated 'tasks' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                  tasks.wrappedValue.append(task)
                  ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ActionWrappingScheduler.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Alert.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ConfirmationDialog.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:84:16: warning: main actor-isolated property 'data' cannot be used to satisfy nonisolated requirement from protocol 'DynamicViewContent'; this is an error in the Swift 6 language mode
    public let data: Data
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:83:6: note: add '@preconcurrency' to the 'DynamicViewContent' conformance to defer isolation checking to run time
  >: DynamicViewContent {
     ^
     @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:138:15: warning: forming 'UnsafeRawPointer' to a variable of type 'OrderedSet<ID>'; this is likely incorrect because 'OrderedSet<ID>' may contain an object reference.
    if memcmp(&lhs, &rhs, MemoryLayout<OrderedSet<ID>>.size) == 0 {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:138:21: warning: forming 'UnsafeRawPointer' to a variable of type 'OrderedSet<ID>'; this is likely incorrect because 'OrderedSet<ID>' may contain an object reference.
    if memcmp(&lhs, &rhs, MemoryLayout<OrderedSet<ID>>.size) == 0 {
                    ^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744948852171-swift-frontend-ComposableArchitecture-Store.swift-arm64_apple_ios13.0-o-Onone-3144566813.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 1.2597 seconds (1.2672 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1925 ( 20.9%)   0.0343 ( 10.1%)   0.2268 ( 18.0%)   0.2281 ( 18.0%)  perform-sema
   0.1921 ( 20.9%)   0.0343 ( 10.1%)   0.2263 ( 18.0%)   0.2275 ( 18.0%)  Type checking and Semantic analysis
   0.0622 (  6.8%)   0.0981 ( 28.9%)   0.1603 ( 12.7%)   0.1615 ( 12.7%)  parse-and-resolve-imports
   0.0574 (  6.2%)   0.0934 ( 27.5%)   0.1508 ( 12.0%)   0.1519 ( 12.0%)  Import resolution
   0.0897 (  9.7%)   0.0155 (  4.6%)   0.1052 (  8.3%)   0.1053 (  8.3%)  typecheck-stmt
   0.0672 (  7.3%)   0.0132 (  3.9%)   0.0804 (  6.4%)   0.0806 (  6.4%)  typecheck-expr
   0.0552 (  6.0%)   0.0133 (  3.9%)   0.0686 (  5.4%)   0.0690 (  5.4%)  typecheck-decl
   0.0514 (  5.6%)   0.0083 (  2.5%)   0.0598 (  4.7%)   0.0605 (  4.8%)  IRGen
   0.0450 (  4.9%)   0.0031 (  0.9%)   0.0482 (  3.8%)   0.0485 (  3.8%)  SILGen
   0.0359 (  3.9%)   0.0081 (  2.4%)   0.0440 (  3.5%)   0.0442 (  3.5%)  precheck-target
   0.0308 (  3.3%)   0.0017 (  0.5%)   0.0326 (  2.6%)   0.0328 (  2.6%)  SILGen-function
   0.0218 (  2.4%)   0.0067 (  2.0%)   0.0286 (  2.3%)   0.0287 (  2.3%)  build-rewrite-system
   0.0136 (  1.5%)   0.0002 (  0.0%)   0.0137 (  1.1%)   0.0140 (  1.1%)  SIL optimization
   0.0042 (  0.5%)   0.0054 (  1.6%)   0.0096 (  0.8%)   0.0096 (  0.8%)  import-clang-decl
   0.0011 (  0.1%)   0.0032 (  0.9%)   0.0043 (  0.3%)   0.0043 (  0.3%)  load-stdlib
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  get-conformance-access-path
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.9207 (100.0%)   0.3389 (100.0%)   1.2597 (100.0%)   1.2672 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8253 seconds (0.8421 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.6488 (100.0%)   0.1766 (100.0%)   0.8253 (100.0%)   0.8421 (100.0%)  Building Target
   0.6488 (100.0%)   0.1766 (100.0%)   0.8253 (100.0%)   0.8421 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ DebugReducer.swift,\ DependencyKeyWritingReducer.swift,\ EmptyReducer.swift,\ ForEachReducer.swift,\ IfCaseLetReducer.swift,\ IfLetReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/DebugReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/DependencyKeyWritingReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/EmptyReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/ForEachReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/IfLetReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744948852969-swift-frontend-ComposableArchitecture-DebugReducer.swift-arm64_apple_ios13.0-o-Onone-3966975924.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6297 seconds (0.6361 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0613 ( 16.0%)   0.0953 ( 38.5%)   0.1565 ( 24.9%)   0.1587 ( 24.9%)  parse-and-resolve-imports
   0.0561 ( 14.7%)   0.0903 ( 36.5%)   0.1464 ( 23.2%)   0.1484 ( 23.3%)  Import resolution
   0.0559 ( 14.6%)   0.0124 (  5.0%)   0.0684 ( 10.9%)   0.0691 ( 10.9%)  perform-sema
   0.0554 ( 14.5%)   0.0124 (  5.0%)   0.0678 ( 10.8%)   0.0685 ( 10.8%)  Type checking and Semantic analysis
   0.0382 ( 10.0%)   0.0090 (  3.6%)   0.0472 (  7.5%)   0.0476 (  7.5%)  typecheck-stmt
   0.0262 (  6.9%)   0.0060 (  2.4%)   0.0322 (  5.1%)   0.0323 (  5.1%)  IRGen
   0.0230 (  6.0%)   0.0052 (  2.1%)   0.0282 (  4.5%)   0.0282 (  4.4%)  typecheck-expr
   0.0174 (  4.6%)   0.0019 (  0.8%)   0.0193 (  3.1%)   0.0194 (  3.0%)  SILGen
   0.0151 (  4.0%)   0.0031 (  1.3%)   0.0182 (  2.9%)   0.0185 (  2.9%)  typecheck-decl
   0.0089 (  2.3%)   0.0024 (  1.0%)   0.0113 (  1.8%)   0.0113 (  1.8%)  build-rewrite-system
   0.0099 (  2.6%)   0.0007 (  0.3%)   0.0105 (  1.7%)   0.0105 (  1.7%)  SILGen-function
   0.0067 (  1.8%)   0.0001 (  0.0%)   0.0068 (  1.1%)   0.0068 (  1.1%)  SIL optimization
   0.0024 (  0.6%)   0.0039 (  1.6%)   0.0063 (  1.0%)   0.0063 (  1.0%)  import-clang-decl
   0.0014 (  0.4%)   0.0044 (  1.8%)   0.0058 (  0.9%)   0.0058 (  0.9%)  load-stdlib
   0.0040 (  1.1%)   0.0004 (  0.2%)   0.0045 (  0.7%)   0.0045 (  0.7%)  precheck-target
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.3823 (100.0%)   0.2475 (100.0%)   0.6297 (100.0%)   0.6361 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4301 seconds (0.4351 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.2867 (100.0%)   0.1434 (100.0%)   0.4301 (100.0%)   0.4351 (100.0%)  Building Target
   0.2867 (100.0%)   0.1434 (100.0%)   0.4301 (100.0%)   0.4351 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/DebugReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/DependencyKeyWritingReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/EmptyReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/ForEachReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/IfLetReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ AnyReducerCompatibility.swift,\ AnyReducerDebug.swift,\ AnyReducerSignpost.swift,\ ReducerBuilder.swift,\ BindingReducer.swift,\ CombineReducers.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerCompatibility.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerSignpost.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/ReducerBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/BindingReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/CombineReducers.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744948905657-swift-frontend-ComposableArchitecture-AnyReducerCompatibility.swift-arm64_apple_ios13.0-o-Onone-1903185279.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8281 seconds (0.8366 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0618 ( 10.9%)   0.0825 ( 31.4%)   0.1443 ( 17.4%)   0.1449 ( 17.3%)  parse-and-resolve-imports
   0.0569 ( 10.1%)   0.0780 ( 29.7%)   0.1348 ( 16.3%)   0.1354 ( 16.2%)  Import resolution
   0.0911 ( 16.1%)   0.0197 (  7.5%)   0.1108 ( 13.4%)   0.1124 ( 13.4%)  perform-sema
   0.0907 ( 16.0%)   0.0196 (  7.5%)   0.1103 ( 13.3%)   0.1118 ( 13.4%)  Type checking and Semantic analysis
   0.0698 ( 12.3%)   0.0154 (  5.9%)   0.0853 ( 10.3%)   0.0865 ( 10.3%)  typecheck-stmt
   0.0607 ( 10.7%)   0.0142 (  5.4%)   0.0749 (  9.0%)   0.0764 (  9.1%)  typecheck-decl
   0.0341 (  6.0%)   0.0090 (  3.4%)   0.0431 (  5.2%)   0.0431 (  5.1%)  typecheck-expr
   0.0297 (  5.3%)   0.0077 (  2.9%)   0.0374 (  4.5%)   0.0379 (  4.5%)  IRGen
   0.0228 (  4.0%)   0.0024 (  0.9%)   0.0252 (  3.0%)   0.0257 (  3.1%)  SILGen
   0.0159 (  2.8%)   0.0018 (  0.7%)   0.0177 (  2.1%)   0.0182 (  2.2%)  SILGen-function
   0.0101 (  1.8%)   0.0020 (  0.8%)   0.0121 (  1.5%)   0.0121 (  1.4%)  precheck-target
   0.0093 (  1.7%)   0.0003 (  0.1%)   0.0096 (  1.2%)   0.0096 (  1.2%)  SIL optimization
   0.0074 (  1.3%)   0.0020 (  0.8%)   0.0094 (  1.1%)   0.0093 (  1.1%)  build-rewrite-system
   0.0040 (  0.7%)   0.0049 (  1.9%)   0.0088 (  1.1%)   0.0088 (  1.1%)  import-clang-decl
   0.0012 (  0.2%)   0.0028 (  1.1%)   0.0040 (  0.5%)   0.0041 (  0.5%)  load-stdlib
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.5658 (100.0%)   0.2623 (100.0%)   0.8281 (100.0%)   0.8366 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5045 seconds (0.5117 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.3588 (100.0%)   0.1457 (100.0%)   0.5045 (100.0%)   0.5117 (100.0%)  Building Target
   0.3588 (100.0%)   0.1457 (100.0%)   0.5045 (100.0%)   0.5117 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerCompatibility.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:196:11: warning: capture of 'debugEnvironment' with non-sendable type 'DebugEnvironment' in a '@Sendable' local function; this is an error in the Swift 6 language mode
          debugEnvironment.queue.async {
          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:327:15: note: consider making struct 'DebugEnvironment' conform to the 'Sendable' protocol
public struct DebugEnvironment {
              ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:199:26: warning: capture of 'debugAction' with non-sendable type 'DebugAction' in a '@Sendable' local function; this is an error in the Swift 6 language mode
              customDump(debugAction, to: &actionOutput, indent: 2)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:33: note: consider making generic parameter 'DebugAction' conform to the 'Sendable' protocol
  public func debug<DebugState, DebugAction>(
                                ^
                                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:206:22: warning: capture of 'previousState' with non-sendable type 'DebugState' in a '@Sendable' local function; this is an error in the Swift 6 language mode
              : diff(previousState, nextState).map { "\($0)\n" } ?? "  (No state changes)\n"
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:21: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
  public func debug<DebugState, DebugAction>(
                    ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:206:37: warning: capture of 'nextState' with non-sendable type 'DebugState' in a '@Sendable' local function; this is an error in the Swift 6 language mode
              : diff(previousState, nextState).map { "\($0)\n" } ?? "  (No state changes)\n"
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:21: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
  public func debug<DebugState, DebugAction>(
                    ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:199:26: warning: capture of 'debugAction' with non-sendable type 'DebugAction' in a '@Sendable' closure
              customDump(debugAction, to: &actionOutput, indent: 2)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:33: note: consider making generic parameter 'DebugAction' conform to the 'Sendable' protocol
  public func debug<DebugState, DebugAction>(
                                ^
                                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:206:22: warning: capture of 'previousState' with non-sendable type 'DebugState' in a '@Sendable' closure
              : diff(previousState, nextState).map { "\($0)\n" } ?? "  (No state changes)\n"
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:21: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
  public func debug<DebugState, DebugAction>(
                    ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:206:37: warning: capture of 'nextState' with non-sendable type 'DebugState' in a '@Sendable' closure
              : diff(previousState, nextState).map { "\($0)\n" } ?? "  (No state changes)\n"
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:21: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
  public func debug<DebugState, DebugAction>(
                    ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:207:13: warning: capture of 'debugEnvironment' with non-sendable type 'DebugEnvironment' in a '@Sendable' closure
            debugEnvironment.printer(
            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:327:15: note: consider making struct 'DebugEnvironment' conform to the 'Sendable' protocol
public struct DebugEnvironment {
              ^
                               : Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerSignpost.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/ReducerBuilder.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/BindingReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/CombineReducers.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal arm64 Compiling AlertState.swift (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
SwiftCompile normal arm64 Compiling\ ImmediateScheduler.swift,\ AlertStateUIKit.swift,\ IfLetUIKit.swift,\ UIKitAnimationScheduler.swift,\ ViewStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/AlertStateUIKit.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/IfLetUIKit.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744948957806-swift-frontend-ComposableArchitecture-ImmediateScheduler.swift-arm64_apple_ios13.0-o-Onone-3131008387.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8150 seconds (0.8206 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0610 ( 10.6%)   0.0710 ( 29.6%)   0.1320 ( 16.2%)   0.1324 ( 16.1%)  parse-and-resolve-imports
   0.0562 (  9.8%)   0.0673 ( 28.0%)   0.1235 ( 15.2%)   0.1239 ( 15.1%)  Import resolution
   0.0989 ( 17.2%)   0.0227 (  9.5%)   0.1217 ( 14.9%)   0.1227 ( 15.0%)  perform-sema
   0.0985 ( 17.1%)   0.0227 (  9.5%)   0.1212 ( 14.9%)   0.1222 ( 14.9%)  Type checking and Semantic analysis
   0.0604 ( 10.5%)   0.0100 (  4.2%)   0.0704 (  8.6%)   0.0710 (  8.7%)  typecheck-stmt
   0.0457 (  7.9%)   0.0069 (  2.9%)   0.0526 (  6.5%)   0.0528 (  6.4%)  typecheck-expr
   0.0394 (  6.8%)   0.0119 (  4.9%)   0.0512 (  6.3%)   0.0515 (  6.3%)  typecheck-decl
   0.0317 (  5.5%)   0.0102 (  4.3%)   0.0419 (  5.1%)   0.0431 (  5.2%)  IRGen
   0.0289 (  5.0%)   0.0029 (  1.2%)   0.0318 (  3.9%)   0.0320 (  3.9%)  SILGen
   0.0183 (  3.2%)   0.0016 (  0.7%)   0.0199 (  2.4%)   0.0199 (  2.4%)  SILGen-function
   0.0118 (  2.0%)   0.0013 (  0.5%)   0.0130 (  1.6%)   0.0130 (  1.6%)  precheck-target
   0.0057 (  1.0%)   0.0066 (  2.8%)   0.0123 (  1.5%)   0.0123 (  1.5%)  import-clang-decl
   0.0076 (  1.3%)   0.0028 (  1.2%)   0.0104 (  1.3%)   0.0106 (  1.3%)  build-rewrite-system
   0.0090 (  1.6%)   0.0001 (  0.0%)   0.0091 (  1.1%)   0.0091 (  1.1%)  SIL optimization
   0.0009 (  0.2%)   0.0019 (  0.8%)   0.0028 (  0.3%)   0.0029 (  0.4%)  load-stdlib
   0.0006 (  0.1%)   0.0000 (  0.0%)   0.0006 (  0.1%)   0.0006 (  0.1%)  typecheck-for-each
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.5749 (100.0%)   0.2401 (100.0%)   0.8150 (100.0%)   0.8206 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5206 seconds (0.5298 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.3831 (100.0%)   0.1375 (100.0%)   0.5206 (100.0%)   0.5298 (100.0%)  Building Target
   0.3831 (100.0%)   0.1375 (100.0%)   0.5206 (100.0%)   0.5298 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift:7:1: warning: extension declares a conformance of imported type 'ImmediateScheduler' to imported protocol 'DateScheduler'; this will not behave correctly if the owners of 'ReactiveSwift' introduce this conformance in the future
extension ReactiveSwift.ImmediateScheduler: DateScheduler {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift:7:1: note: add '@retroactive' to silence this warning
extension ReactiveSwift.ImmediateScheduler: DateScheduler {
^                                           ~~~~~~~~~~~~~
                                            @retroactive DateScheduler
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/AlertStateUIKit.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/IfLetUIKit.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:130:18: warning: call to main actor-isolated class method 'animate(withDuration:delay:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
          UIView.animate(
                 ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:delay:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:137:18: warning: call to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
          UIView.animate(
                 ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, usingSpringWithDamping dampingRatio: CGFloat, initialSpringVelocity velocity: CGFloat, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:167:18: warning: call to main actor-isolated class method 'animate(withDuration:delay:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
          UIView.animate(
                 ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:delay:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:174:18: warning: call to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
          UIView.animate(
                 ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, usingSpringWithDamping dampingRatio: CGFloat, initialSpringVelocity velocity: CGFloat, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:130:18: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
          UIView.animate(
          ~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:130:18: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'animate(withDuration:delay:options:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
          UIView.animate(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:137:18: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
          UIView.animate(
          ~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:137:18: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
          UIView.animate(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:167:18: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
          UIView.animate(
          ~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:167:18: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'animate(withDuration:delay:options:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
          UIView.animate(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:174:18: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
          UIView.animate(
          ~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:174:18: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
          UIView.animate(
                 ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: warning: non-sendable result type 'ViewState?' cannot be sent from nonisolated context in call to instance method 'first(where:)'; this is an error in the Swift 6 language mode
          .first(where: { !predicate($0) })
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:69:30: note: consider making generic parameter 'ViewState' conform to the 'Sendable' protocol
public final class ViewStore<ViewState, ViewAction> {
                             ^
                                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:466:11: warning: capture of 'cancellable' with non-sendable type 'Box<(any Disposable)?>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
          cancellable.wrappedValue?.dispose()
          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Box.swift:1:13: note: generic class 'Box' does not conform to the 'Sendable' protocol
final class Box<Wrapped> {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:505:24: warning: main actor-isolated subscript 'subscript(dynamicMember:)' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        .projectedValue[get: .init(rawValue: get), send: .init(rawValue: valueToAction)]
                       ^
SwiftUICore.ObservedObject.Wrapper.subscript:3:35: note: subscript declared here
@MainActor @preconcurrency public subscript<Subject>(dynamicMember keyPath: ReferenceWritableKeyPath<ObjectType, Subject>) -> Binding<Subject> { get }  }
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:500:17: note: add '@MainActor' to make instance method 'binding(get:send:)' part of global actor 'MainActor'
    public func binding<Value>(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:505:10: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        .projectedValue[get: .init(rawValue: get), send: .init(rawValue: valueToAction)]
         ^
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
@MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:500:17: note: add '@MainActor' to make instance method 'binding(get:send:)' part of global actor 'MainActor'
    public func binding<Value>(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:504:7: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
      ObservedObject(wrappedValue: self)
      ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:500:17: note: add '@MainActor' to make instance method 'binding(get:send:)' part of global actor 'MainActor'
    public func binding<Value>(
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: warning: sending value of non-Sendable type '(ViewState) async -> Bool' risks causing data races; this is an error in the Swift 6 language mode
          .first(where: { !predicate($0) })
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: note: sending main actor-isolated value of non-Sendable type '(ViewState) async -> Bool' to nonisolated callee risks causing races in between main actor-isolated and nonisolated uses
          .first(where: { !predicate($0) })
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: warning: sending value of non-Sendable type 'AsyncStream<ViewState>' risks causing data races; this is an error in the Swift 6 language mode
          .first(where: { !predicate($0) })
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: note: sending main actor-isolated value of non-Sendable type 'AsyncStream<ViewState>' to nonisolated callee risks causing races in between main actor-isolated and nonisolated uses
          .first(where: { !predicate($0) })
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:504:7: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
      ObservedObject(wrappedValue: self)
      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:504:7: note: sending task-isolated 'self' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
      ObservedObject(wrappedValue: self)
      ^
SwiftDriverJobDiscovery normal arm64 Compiling ButtonState.swift (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
SwiftCompile normal arm64 Compiling\ Optional.swift,\ Reduce.swift,\ Scope.swift,\ SignpostReducer.swift,\ ReducerProtocol.swift,\ SchedulerExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Optional.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Reduce.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Scope.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/SignpostReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ReducerProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SchedulerExtensions/SchedulerExtensions.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744949141057-swift-frontend-ComposableArchitecture-Optional.swift-arm64_apple_ios13.0-o-Onone-2113238682.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3885 seconds (0.3955 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0575 ( 23.3%)   0.0553 ( 38.9%)   0.1128 ( 29.0%)   0.1137 ( 28.7%)  parse-and-resolve-imports
   0.0523 ( 21.2%)   0.0519 ( 36.5%)   0.1042 ( 26.8%)   0.1050 ( 26.6%)  Import resolution
   0.0270 ( 10.9%)   0.0063 (  4.4%)   0.0333 (  8.6%)   0.0351 (  8.9%)  perform-sema
   0.0265 ( 10.8%)   0.0062 (  4.4%)   0.0327 (  8.4%)   0.0346 (  8.7%)  Type checking and Semantic analysis
   0.0189 (  7.7%)   0.0059 (  4.2%)   0.0248 (  6.4%)   0.0249 (  6.3%)  IRGen
   0.0129 (  5.3%)   0.0037 (  2.6%)   0.0166 (  4.3%)   0.0167 (  4.2%)  typecheck-stmt
   0.0111 (  4.5%)   0.0034 (  2.4%)   0.0145 (  3.7%)   0.0156 (  3.9%)  typecheck-expr
   0.0124 (  5.0%)   0.0023 (  1.6%)   0.0147 (  3.8%)   0.0147 (  3.7%)  typecheck-decl
   0.0107 (  4.4%)   0.0012 (  0.9%)   0.0120 (  3.1%)   0.0120 (  3.0%)  SILGen
   0.0054 (  2.2%)   0.0005 (  0.3%)   0.0059 (  1.5%)   0.0059 (  1.5%)  SILGen-function
   0.0053 (  2.2%)   0.0001 (  0.1%)   0.0054 (  1.4%)   0.0054 (  1.4%)  SIL optimization
   0.0021 (  0.9%)   0.0030 (  2.1%)   0.0052 (  1.3%)   0.0052 (  1.3%)  import-clang-decl
   0.0010 (  0.4%)   0.0017 (  1.2%)   0.0027 (  0.7%)   0.0028 (  0.7%)  load-stdlib
   0.0018 (  0.7%)   0.0004 (  0.3%)   0.0022 (  0.6%)   0.0022 (  0.6%)  precheck-target
   0.0010 (  0.4%)   0.0003 (  0.2%)   0.0013 (  0.3%)   0.0013 (  0.3%)  build-rewrite-system
   0.0002 (  0.1%)   0.0000 (  0.0%)   0.0002 (  0.1%)   0.0002 (  0.1%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2463 (100.0%)   0.1422 (100.0%)   0.3885 (100.0%)   0.3955 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2929 seconds (0.2982 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1965 (100.0%)   0.0964 (100.0%)   0.2929 (100.0%)   0.2982 (100.0%)  Building Target
   0.1965 (100.0%)   0.0964 (100.0%)   0.2929 (100.0%)   0.2982 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Optional.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Reduce.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Scope.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/SignpostReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ReducerProtocol.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SchedulerExtensions/SchedulerExtensions.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal arm64 Compiling TextState.swift (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
SwiftDriver\ Compilation _SwiftUINavigationState normal arm64 com.apple.xcode.tools.swift.compiler (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name _SwiftUINavigationState -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling OpenExistential.swift, RuntimeWarnings.swift, TaskCancellableValue.swift, TypeName.swift, AnyReducer.swift, AnyReducerBinding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftCompile normal arm64 Compiling\ Identified.swift,\ IfLetStore.swift,\ SwitchStore.swift,\ WithViewStore.swift,\ TestStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Identified.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/IfLetStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/SwitchStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Identified.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/IfLetStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/SwitchStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:141:12: warning: main actor-isolated property 'viewStore' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      self.viewStore = ViewStore(store, removeDuplicates: isDuplicate)
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: mutation of this property is only permitted within the actor
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:160:27: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
          customDump(self.viewStore.state, to: &stateDump, indent: 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:162:37: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            self.previousState(self.viewStore.state)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:164:29: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
              diff($0, self.viewStore.state).map { "(Changed state)\n\($0)" }
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:184:42: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      return self.content(ViewStore(self.viewStore))
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:732:12: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      self.viewStore.state
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
    @ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'Exhaustivity' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let off = Self.off(showSkippedAssertions: false)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2376:13: note: consider making enum 'Exhaustivity' conform to the 'Sendable' protocol
public enum Exhaustivity: Equatable {
            ^
                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: note: add '@MainActor' to make static property 'off' part of global actor 'MainActor'
  public static let off = Self.off(showSkippedAssertions: false)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let off = Self.off(showSkippedAssertions: false)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1049:50: warning: sending value of non-Sendable type '(Void) async -> Bool' risks causing data races; this is an error in the Swift 6 language mode
    await self.reducer.effectDidSubscribe.stream.first(where: { _ in true })
          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1049:50: note: sending main actor-isolated value of non-Sendable type '(Void) async -> Bool' to nonisolated callee risks causing races in between main actor-isolated and nonisolated uses
    await self.reducer.effectDidSubscribe.stream.first(where: { _ in true })
                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1436:16: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    await self.receiveAction(timeout: nanoseconds, file: file, line: line)
          ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1436:16: note: sending main actor-isolated 'self' to nonisolated instance method 'receiveAction(timeout:file:line:)' risks causing data races between nonisolated and main actor-isolated uses
    await self.receiveAction(timeout: nanoseconds, file: file, line: line)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1620:16: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    await self.receiveAction(timeout: nanoseconds, file: file, line: line)
          ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1620:16: note: sending main actor-isolated 'self' to nonisolated instance method 'receiveAction(timeout:file:line:)' risks causing data races between nonisolated and main actor-isolated uses
    await self.receiveAction(timeout: nanoseconds, file: file, line: line)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1674:16: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    await self.receiveAction(timeout: nanoseconds, file: file, line: line)
          ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1674:16: note: sending main actor-isolated 'self' to nonisolated instance method 'receiveAction(timeout:file:line:)' risks causing data races between nonisolated and main actor-isolated uses
    await self.receiveAction(timeout: nanoseconds, file: file, line: line)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1730:18: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
      await self.receiveAction(timeout: duration.nanoseconds, file: file, line: line)
            ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1730:18: note: sending main actor-isolated 'self' to nonisolated instance method 'receiveAction(timeout:file:line:)' risks causing data races between nonisolated and main actor-isolated uses
      await self.receiveAction(timeout: duration.nanoseconds, file: file, line: line)
                 ^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744949360762-swift-frontend-ComposableArchitecture-Identified.swift-arm64_apple_ios13.0-o-Onone-1853946100.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 2.3521 seconds (2.4870 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.4072 ( 19.7%)   0.0381 ( 13.2%)   0.4453 ( 18.9%)   0.4716 ( 19.0%)  perform-sema
   0.4067 ( 19.7%)   0.0381 ( 13.2%)   0.4448 ( 18.9%)   0.4711 ( 18.9%)  Type checking and Semantic analysis
   0.3234 ( 15.7%)   0.0258 (  8.9%)   0.3492 ( 14.8%)   0.3754 ( 15.1%)  typecheck-stmt
   0.3088 ( 15.0%)   0.0257 (  8.9%)   0.3344 ( 14.2%)   0.3607 ( 14.5%)  typecheck-expr
   0.1131 (  5.5%)   0.0137 (  4.7%)   0.1269 (  5.4%)   0.1269 (  5.1%)  IRGen
   0.1094 (  5.3%)   0.0133 (  4.6%)   0.1226 (  5.2%)   0.1226 (  4.9%)  typecheck-decl
   0.0552 (  2.7%)   0.0553 ( 19.1%)   0.1104 (  4.7%)   0.1122 (  4.5%)  parse-and-resolve-imports
   0.0508 (  2.5%)   0.0523 ( 18.1%)   0.1030 (  4.4%)   0.1048 (  4.2%)  Import resolution
   0.0993 (  4.8%)   0.0054 (  1.9%)   0.1048 (  4.5%)   0.1048 (  4.2%)  SILGen
   0.0528 (  2.6%)   0.0065 (  2.2%)   0.0593 (  2.5%)   0.0855 (  3.4%)  precheck-target
   0.0758 (  3.7%)   0.0038 (  1.3%)   0.0797 (  3.4%)   0.0797 (  3.2%)  SILGen-function
   0.0314 (  1.5%)   0.0002 (  0.1%)   0.0316 (  1.3%)   0.0316 (  1.3%)  SIL optimization
   0.0183 (  0.9%)   0.0033 (  1.1%)   0.0216 (  0.9%)   0.0216 (  0.9%)  build-rewrite-system
   0.0058 (  0.3%)   0.0057 (  2.0%)   0.0115 (  0.5%)   0.0115 (  0.5%)  import-clang-decl
   0.0010 (  0.1%)   0.0016 (  0.6%)   0.0027 (  0.1%)   0.0027 (  0.1%)  load-stdlib
   0.0016 (  0.1%)   0.0002 (  0.1%)   0.0018 (  0.1%)   0.0018 (  0.1%)  typecheck-expr-pattern
   0.0006 (  0.0%)   0.0001 (  0.0%)   0.0008 (  0.0%)   0.0008 (  0.0%)  load-all-members
   0.0006 (  0.0%)   0.0000 (  0.0%)   0.0006 (  0.0%)   0.0006 (  0.0%)  typecheck-for-each
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  source-file-lookup-class-member
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  populate-module-class-member-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  associated-type-inference
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  get-conformance-access-path
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  SIL verification, pre-optimization
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  SIL verification, post-optimization
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   2.0629 (100.0%)   0.2892 (100.0%)   2.3521 (100.0%)   2.4870 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.5428 seconds (1.5721 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.3963 (100.0%)   0.1465 (100.0%)   1.5428 (100.0%)   1.5721 (100.0%)  Building Target
   1.3963 (100.0%)   0.1465 (100.0%)   1.5428 (100.0%)   1.5721 (100.0%)  Total
SwiftDriverJobDiscovery normal arm64 Compiling DebugReducer.swift, DependencyKeyWritingReducer.swift, EmptyReducer.swift, ForEachReducer.swift, IfCaseLetReducer.swift, IfLetReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SwiftUINavigationState.o normal (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swiftui-navigation
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SwiftUINavigationState.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o normal (in target 'Dependencies' from project 'swift-dependencies')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-dependencies
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o
SwiftDriverJobDiscovery normal arm64 Compiling Throttling.swift, Timer.swift, SignalProducer.swift, TaskResult.swift, Binding+IsPresent.swift, Box.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
ExtractAppIntentsMetadata (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swiftui-navigation
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name _SwiftUINavigationState --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier swiftui-navigation.-SwiftUINavigationState --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SwiftUINavigationState.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SwiftUINavigationState.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/_SwiftUINavigationState.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/_SwiftUINavigationState.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-iphoneos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 02:09:09.406 appintentsmetadataprocessor[1813:8940] Starting appintentsmetadataprocessor export
2025-04-27 02:09:09.447 appintentsmetadataprocessor[1813:8940] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'Dependencies' from project 'swift-dependencies')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-dependencies
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Dependencies --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier swift-dependencies.Dependencies --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Dependencies.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Dependencies.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-iphoneos/Dependencies.build/Objects-normal/arm64/Dependencies.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 02:09:09.418 appintentsmetadataprocessor[1814:8945] Starting appintentsmetadataprocessor export
2025-04-27 02:09:09.458 appintentsmetadataprocessor[1814:8945] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling AnyReducerCompatibility.swift, AnyReducerDebug.swift, AnyReducerSignpost.swift, ReducerBuilder.swift, BindingReducer.swift, CombineReducers.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Compiling Optional.swift, Reduce.swift, Scope.swift, SignpostReducer.swift, ReducerProtocol.swift, SchedulerExtensions.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SwiftUINavigationState.o (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swiftui-navigation
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/_SwiftUINavigationState.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o (in target 'Dependencies' from project 'swift-dependencies')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-dependencies
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Dependencies.o
SwiftDriverJobDiscovery normal arm64 Compiling ImmediateScheduler.swift, AlertStateUIKit.swift, IfLetUIKit.swift, UIKitAnimationScheduler.swift, ViewStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Compiling MainQueue.swift, Effect.swift, Animation.swift, Cancellation.swift, Debouncing.swift, Deferring.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Compiling Breakpoint.swift, CurrentValueRelay.swift, Debug.swift, Deprecations.swift, Exports.swift, Locking.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Emitting module for ComposableArchitecture (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriver\ Compilation\ Requirements ComposableArchitecture normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ComposableArchitecture -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ComposableArchitecture-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-Swift.h (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ComposableArchitecture-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.abi.json (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftdoc (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftsourceinfo (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Store.swift, ActionWrappingScheduler.swift, Alert.swift, Binding.swift, ConfirmationDialog.swift, ForEachStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Compiling Identified.swift, IfLetStore.swift, SwitchStore.swift, WithViewStore.swift, TestStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriver\ Compilation ComposableArchitecture normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ComposableArchitecture -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.o normal (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.o
ExtractAppIntentsMetadata (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ComposableArchitecture --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.ComposableArchitecture --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/ComposableArchitecture.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/ComposableArchitecture.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-iphoneos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 02:09:11.018 appintentsmetadataprocessor[1818:8982] Starting appintentsmetadataprocessor export
2025-04-27 02:09:11.054 appintentsmetadataprocessor[1818:8982] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.o (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ComposableArchitecture.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swift-benchmark",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/google/swift-benchmark"
    },
    {
      "identity" : "reactiveswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "7.1.0",
            "upper_bound" : "8.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ReactiveCocoa/ReactiveSwift"
    },
    {
      "identity" : "swift-case-paths",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.10.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-case-paths"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections"
    },
    {
      "identity" : "swift-custom-dump",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.6.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-custom-dump"
    },
    {
      "identity" : "swift-dependencies",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.2",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-dependencies"
    },
    {
      "identity" : "swift-identified-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-identified-collections"
    },
    {
      "identity" : "swiftui-navigation",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.6.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swiftui-navigation"
    },
    {
      "identity" : "xctest-dynamic-overlay",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.5.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/xctest-dynamic-overlay"
    }
  ],
  "manifest_display_name" : "reactiveswift-composable-architecture",
  "name" : "reactiveswift-composable-architecture",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "ComposableArchitecture",
      "targets" : [
        "ComposableArchitecture"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "swift-composable-architecture-benchmark",
      "targets" : [
        "swift-composable-architecture-benchmark"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "swift_composable_architecture_benchmark",
      "module_type" : "SwiftTarget",
      "name" : "swift-composable-architecture-benchmark",
      "path" : "Sources/swift-composable-architecture-benchmark",
      "product_dependencies" : [
        "Benchmark"
      ],
      "product_memberships" : [
        "swift-composable-architecture-benchmark"
      ],
      "sources" : [
        "Common.swift",
        "Dependencies.swift",
        "Effects.swift",
        "StoreScope.swift",
        "ViewStore.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "ComposableArchitecture"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "_CAsyncSupport",
      "module_type" : "SystemLibraryTarget",
      "name" : "_CAsyncSupport",
      "path" : "Sources/_CAsyncSupport",
      "sources" : [
      ],
      "type" : "system-target"
    },
    {
      "c99name" : "ComposableArchitectureTests",
      "module_type" : "SwiftTarget",
      "name" : "ComposableArchitectureTests",
      "path" : "Tests/ComposableArchitectureTests",
      "sources" : [
        "BindingTests.swift",
        "CompatibilityTests.swift",
        "ComposableArchitectureTests.swift",
        "DebugTests.swift",
        "DependencyKeyWritingReducerTests.swift",
        "DeprecatedTests.swift",
        "EffectCancellationTests.swift",
        "EffectDebounceTests.swift",
        "EffectDeferredTests.swift",
        "EffectFailureTests.swift",
        "EffectOperationTests.swift",
        "EffectRunTests.swift",
        "EffectTaskTests.swift",
        "EffectTests.swift",
        "EffectThrottleTests.swift",
        "ForEachReducerTests.swift",
        "IfCaseLetReducerTests.swift",
        "IfLetReducerTests.swift",
        "MemoryManagementTests.swift",
        "ReducerBuilderTests.swift",
        "ReducerTests.swift",
        "RuntimeWarningTests.swift",
        "SchedulerTests.swift",
        "ScopeTests.swift",
        "SerialExecutor.swift",
        "StoreTests.swift",
        "TaskCancellationTests.swift",
        "TaskResultTests.swift",
        "TestStoreFailureTests.swift",
        "TestStoreNonExhaustiveTests.swift",
        "TestStoreTests.swift",
        "TimerTests.swift",
        "ViewStoreTests.swift",
        "WithViewStoreAppTest.swift"
      ],
      "target_dependencies" : [
        "_CAsyncSupport",
        "ComposableArchitecture"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ComposableArchitecture",
      "module_type" : "SwiftTarget",
      "name" : "ComposableArchitecture",
      "path" : "Sources/ComposableArchitecture",
      "product_dependencies" : [
        "CasePaths",
        "CustomDump",
        "Dependencies",
        "IdentifiedCollections",
        "OrderedCollections",
        "ReactiveSwift",
        "_SwiftUINavigationState",
        "XCTestDynamicOverlay"
      ],
      "product_memberships" : [
        "ComposableArchitecture",
        "swift-composable-architecture-benchmark"
      ],
      "sources" : [
        "Dependencies/MainQueue.swift",
        "Effect.swift",
        "Effects/Animation.swift",
        "Effects/Cancellation.swift",
        "Effects/Publisher/Debouncing.swift",
        "Effects/Publisher/Deferring.swift",
        "Effects/Publisher/Throttling.swift",
        "Effects/Publisher/Timer.swift",
        "Effects/SignalProducer.swift",
        "Effects/TaskResult.swift",
        "Internal/Binding+IsPresent.swift",
        "Internal/Box.swift",
        "Internal/Breakpoint.swift",
        "Internal/CurrentValueRelay.swift",
        "Internal/Debug.swift",
        "Internal/Deprecations.swift",
        "Internal/Exports.swift",
        "Internal/Locking.swift",
        "Internal/OpenExistential.swift",
        "Internal/RuntimeWarnings.swift",
        "Internal/TaskCancellableValue.swift",
        "Internal/TypeName.swift",
        "Reducer/AnyReducer/AnyReducer.swift",
        "Reducer/AnyReducer/AnyReducerBinding.swift",
        "Reducer/AnyReducer/AnyReducerCompatibility.swift",
        "Reducer/AnyReducer/AnyReducerDebug.swift",
        "Reducer/AnyReducer/AnyReducerSignpost.swift",
        "Reducer/ReducerBuilder.swift",
        "Reducer/Reducers/BindingReducer.swift",
        "Reducer/Reducers/CombineReducers.swift",
        "Reducer/Reducers/DebugReducer.swift",
        "Reducer/Reducers/DependencyKeyWritingReducer.swift",
        "Reducer/Reducers/EmptyReducer.swift",
        "Reducer/Reducers/ForEachReducer.swift",
        "Reducer/Reducers/IfCaseLetReducer.swift",
        "Reducer/Reducers/IfLetReducer.swift",
        "Reducer/Reducers/Optional.swift",
        "Reducer/Reducers/Reduce.swift",
        "Reducer/Reducers/Scope.swift",
        "Reducer/Reducers/SignpostReducer.swift",
        "ReducerProtocol.swift",
        "SchedulerExtensions/SchedulerExtensions.swift",
        "Store.swift",
        "SwiftUI/ActionWrappingScheduler.swift",
        "SwiftUI/Alert.swift",
        "SwiftUI/Binding.swift",
        "SwiftUI/ConfirmationDialog.swift",
        "SwiftUI/ForEachStore.swift",
        "SwiftUI/Identified.swift",
        "SwiftUI/IfLetStore.swift",
        "SwiftUI/SwitchStore.swift",
        "SwiftUI/WithViewStore.swift",
        "TestStore.swift",
        "TestSupport/ImmediateScheduler.swift",
        "UIKit/AlertStateUIKit.swift",
        "UIKit/IfLetUIKit.swift",
        "UIKit/UIKitAnimationScheduler.swift",
        "ViewStore.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.