The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build Stitcher, reference main (ad1e84), with Swift 6.1 for Android on 29 May 2025 11:18:48 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

    |                |- note: add '@MainActor' to make static property 'instantionNotificationCenter' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     private static let storageCleaner = StorageCleaner {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Factory/InstantionNotificationCenter.swift:10:13: note: class 'InstantionNotificationCenter' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | final class InstantionNotificationCenter {
   |             `- note: class 'InstantionNotificationCenter' does not conform to the 'Sendable' protocol
11 |
12 |     @Atomic
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyGraph.swift:39:24: warning: static property 'storageCleaner' is not concurrency-safe because non-'Sendable' type 'StorageCleaner' may have shared mutable state; this is an error in the Swift 6 language mode
 37 |     static let instantionNotificationCenter = InstantionNotificationCenter()
 38 |
 39 |     private static let storageCleaner = StorageCleaner {
    |                        |- warning: static property 'storageCleaner' is not concurrency-safe because non-'Sendable' type 'StorageCleaner' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: add '@MainActor' to make static property 'storageCleaner' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |         releaseUnusedStorage()
 41 |     }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/StorageCleaner/StorageCleaner.swift:20:7: note: class 'StorageCleaner' does not conform to the 'Sendable' protocol
18 | #endif
19 |
20 | class StorageCleaner {
   |       `- note: class 'StorageCleaner' does not conform to the 'Sendable' protocol
21 |
22 |     private var cleanupHandler: @Sendable () -> Void
[510/540] Compiling Stitcher DependencyRegistrarIndex.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Factory/InstantionNotificationCenter.swift:45:33: warning: capture of 'pendingNotifications' with non-sendable type '[AnyPostInstantiationAware]' in a '@Sendable' closure; this is an error in the Swift 6 language mode
43 |
44 |         AsyncTask(priority: .medium) {
45 |             for notification in pendingNotifications {
   |                                 `- warning: capture of 'pendingNotifications' with non-sendable type '[AnyPostInstantiationAware]' in a '@Sendable' closure; this is an error in the Swift 6 language mode
46 |                 notification.didInstantiate()
47 |             }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Factory/PostInstantiationAware.swift:16:8: note: consider making struct 'AnyPostInstantiationAware' conform to the 'Sendable' protocol
14 | }
15 |
16 | struct AnyPostInstantiationAware: PostInstantiationAware {
   |        `- note: consider making struct 'AnyPostInstantiationAware' conform to the 'Sendable' protocol
17 |
18 |     private let _didInstantiate: () -> Void
macro expansion @TaskLocal:1:24: warning: static property '$instantiationBacktrace' is not concurrency-safe because non-'Sendable' type 'TaskLocal<OrderedSet<DependencyLocator>>' may have shared mutable state; this is an error in the Swift 6 language mode
`- /host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleDetector.swift:15:86: note: expanded code originates here
 13 |
 14 |     @TaskLocal
 15 |     fileprivate static var instantiationBacktrace: OrderedSet<DependencyLocator> = []
    +--- macro expansion @TaskLocal ------------------------------------
    |1 | fileprivate static let $instantiationBacktrace: TaskLocal<OrderedSet<DependencyLocator>> = TaskLocal(wrappedValue: [])
    |  |                        |- warning: static property '$instantiationBacktrace' is not concurrency-safe because non-'Sendable' type 'TaskLocal<OrderedSet<DependencyLocator>>' may have shared mutable state; this is an error in the Swift 6 language mode
    |  |                        |- note: add '@MainActor' to make static property '$instantiationBacktrace' part of global actor 'MainActor'
    |  |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    +-------------------------------------------------------------------
 16 |
 17 |     fileprivate static func preventCycle(
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyLocator.swift:11:15: note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
  9 |
 10 | /// A type that can be used as a query to locate a dependency.
 11 | public struct DependencyLocator: Hashable {
    |               `- note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
 12 |     typealias Predicate = (MatchProposal) -> Bool
 13 |
macro expansion @TaskLocal:1:24: warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleDetector.swift:15:86: note: expanded code originates here
 13 |
 14 |     @TaskLocal
 15 |     fileprivate static var instantiationBacktrace: OrderedSet<DependencyLocator> = []
    +--- macro expansion @TaskLocal ------------------------------------
    |1 | fileprivate static let $instantiationBacktrace: TaskLocal<OrderedSet<DependencyLocator>> = TaskLocal(wrappedValue: [])
    |  |                        `- warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    +-------------------------------------------------------------------
 16 |
 17 |     fileprivate static func preventCycle(
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyLocator.swift:11:15: note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
  9 |
 10 | /// A type that can be used as a query to locate a dependency.
 11 | public struct DependencyLocator: Hashable {
    |               `- note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
 12 |     typealias Predicate = (MatchProposal) -> Bool
 13 |
macro expansion @TaskLocal:1:92: warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleDetector.swift:15:86: note: expanded code originates here
 13 |
 14 |     @TaskLocal
 15 |     fileprivate static var instantiationBacktrace: OrderedSet<DependencyLocator> = []
    +--- macro expansion @TaskLocal ------------------------------------
    |1 | fileprivate static let $instantiationBacktrace: TaskLocal<OrderedSet<DependencyLocator>> = TaskLocal(wrappedValue: [])
    |  |                                                                                            `- warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    +-------------------------------------------------------------------
 16 |
 17 |     fileprivate static func preventCycle(
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyLocator.swift:11:15: note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
  9 |
 10 | /// A type that can be used as a query to locate a dependency.
 11 | public struct DependencyLocator: Hashable {
    |               `- note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
 12 |     typealias Predicate = (MatchProposal) -> Bool
 13 |
macro expansion @TaskLocal:1:92: warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleDetector.swift:15:86: note: expanded code originates here
 13 |
 14 |     @TaskLocal
 15 |     fileprivate static var instantiationBacktrace: OrderedSet<DependencyLocator> = []
    +--- macro expansion @TaskLocal ------------------------------------
    |1 | fileprivate static let $instantiationBacktrace: TaskLocal<OrderedSet<DependencyLocator>> = TaskLocal(wrappedValue: [])
    |  |                                                                                            `- warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    +-------------------------------------------------------------------
 16 |
 17 |     fileprivate static func preventCycle(
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyLocator.swift:11:15: note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
  9 |
 10 | /// A type that can be used as a query to locate a dependency.
 11 | public struct DependencyLocator: Hashable {
    |               `- note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
 12 |     typealias Predicate = (MatchProposal) -> Bool
 13 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleDetector.swift:44:28: warning: static property 'instantiationBacktrace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 42 |
 43 |     @ThreadLocal
 44 |     fileprivate static var instantiationBacktrace: OrderedSet<DependencyLocator> = []
    |                            |- warning: static property 'instantiationBacktrace' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert 'instantiationBacktrace' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: add '@MainActor' to make static property 'instantiationBacktrace' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 |
 46 |     fileprivate static func preventCycle(
macro expansion @TaskLocal:3:33: warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
`- /host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleDetector.swift:15:86: note: expanded code originates here
 13 |
 14 |     @TaskLocal
 15 |     fileprivate static var instantiationBacktrace: OrderedSet<DependencyLocator> = []
    +--- macro expansion @TaskLocal ------------------------------------
    |1 | {
    |2 |     get {
    |3 |         $instantiationBacktrace.get()
    |  |                                 `- warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    |4 |     }
    |5 | }
    +-------------------------------------------------------------------
 16 |
 17 |     fileprivate static func preventCycle(
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyLocator.swift:11:15: note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
  9 |
 10 | /// A type that can be used as a query to locate a dependency.
 11 | public struct DependencyLocator: Hashable {
    |               `- note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
 12 |     typealias Predicate = (MatchProposal) -> Bool
 13 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleDetector.swift:35:37: warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 33 |         instantiation: () throws -> Result
 34 |     ) throws -> Result {
 35 |         try $instantiationBacktrace.withValue(instantiationBacktrace.inserting(locator)) {
    |                                     `- warning: type 'DependencyLocator' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 36 |             try instantiation()
 37 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyLocator.swift:11:15: note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
  9 |
 10 | /// A type that can be used as a query to locate a dependency.
 11 | public struct DependencyLocator: Hashable {
    |               `- note: consider making struct 'DependencyLocator' conform to the 'Sendable' protocol
 12 |     typealias Predicate = (MatchProposal) -> Bool
 13 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyGraph.swift:20:24: warning: static property 'initialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 |
 19 |     @Atomic
 20 |     private static var initialized = false
    |                        |- warning: static property 'initialized' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'initialized' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'initialized' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 |
 22 |     @Atomic
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyGraph.swift:23:24: warning: static property 'activeContainers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 21 |
 22 |     @Atomic
 23 |     private static var activeContainers: OrderedDictionary<DependencyContainer.ID, IndexedDependencyContainer> = [:]
    |                        |- warning: static property 'activeContainers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'activeContainers' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'activeContainers' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |     @Atomic
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyGraph.swift:26:24: warning: static property 'instanceStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 24 |
 25 |     @Atomic
 26 |     private static var instanceStorage: [InstanceStorageKey : AnyInstanceStorage] = [:]
    |                        |- warning: static property 'instanceStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'instanceStorage' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'instanceStorage' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |
 28 |     @Atomic
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyGraph.swift:29:24: warning: static property 'subscriptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |
 28 |     @Atomic
 29 |     private static var subscriptions: [DependencyContainer.ID : AnyPipelineCancellable] = [:]
    |                        |- warning: static property 'subscriptions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'subscriptions' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'subscriptions' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |
 31 |     private static let graphChangedSubject = PipelineSubject<Void>()
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyGraph.swift:31:24: warning: static property 'graphChangedSubject' is not concurrency-safe because non-'Sendable' type 'PipelineSubject<Void>' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     private static var subscriptions: [DependencyContainer.ID : AnyPipelineCancellable] = [:]
 30 |
 31 |     private static let graphChangedSubject = PipelineSubject<Void>()
    |                        |- warning: static property 'graphChangedSubject' is not concurrency-safe because non-'Sendable' type 'PipelineSubject<Void>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: add '@MainActor' to make static property 'graphChangedSubject' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     static var graphChangedPipeline: AnyPipeline<Void> {
/host/spi-builder-workspace/Sources/Stitcher/ReactivePipeline/PipelineSubject.swift:15:7: note: generic class 'PipelineSubject' does not conform to the 'Sendable' protocol
13 | #endif
14 |
15 | class PipelineSubject<Output>: Pipeline {
   |       `- note: generic class 'PipelineSubject' does not conform to the 'Sendable' protocol
16 |
17 |     private let provider: AnyObject
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyGraph.swift:37:16: warning: static property 'instantionNotificationCenter' is not concurrency-safe because non-'Sendable' type 'InstantionNotificationCenter' may have shared mutable state; this is an error in the Swift 6 language mode
 35 |     }
 36 |
 37 |     static let instantionNotificationCenter = InstantionNotificationCenter()
    |                |- warning: static property 'instantionNotificationCenter' is not concurrency-safe because non-'Sendable' type 'InstantionNotificationCenter' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'instantionNotificationCenter' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     private static let storageCleaner = StorageCleaner {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Factory/InstantionNotificationCenter.swift:10:13: note: class 'InstantionNotificationCenter' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | final class InstantionNotificationCenter {
   |             `- note: class 'InstantionNotificationCenter' does not conform to the 'Sendable' protocol
11 |
12 |     @Atomic
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyGraph.swift:39:24: warning: static property 'storageCleaner' is not concurrency-safe because non-'Sendable' type 'StorageCleaner' may have shared mutable state; this is an error in the Swift 6 language mode
 37 |     static let instantionNotificationCenter = InstantionNotificationCenter()
 38 |
 39 |     private static let storageCleaner = StorageCleaner {
    |                        |- warning: static property 'storageCleaner' is not concurrency-safe because non-'Sendable' type 'StorageCleaner' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: add '@MainActor' to make static property 'storageCleaner' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |         releaseUnusedStorage()
 41 |     }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/StorageCleaner/StorageCleaner.swift:20:7: note: class 'StorageCleaner' does not conform to the 'Sendable' protocol
18 | #endif
19 |
20 | class StorageCleaner {
   |       `- note: class 'StorageCleaner' does not conform to the 'Sendable' protocol
21 |
22 |     private var cleanupHandler: @Sendable () -> Void
[511/540] Compiling Stitcher TypeName.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[512/540] Compiling Stitcher Atomic.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[513/540] Compiling Stitcher Dependencies.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[514/540] Compiling Stitcher Injected+Init.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[515/540] Compiling Stitcher Injected.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[516/540] Compiling Stitcher AutoregisterableDependency.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[517/540] Compiling Stitcher GeneratedDependencyRegistration.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[518/540] Compiling Stitcher RegisterableDependency.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[519/540] Compiling Stitcher DependenciesRegistrar.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[520/540] Compiling Stitcher Dependency.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:27:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 25 |             try DependencyGraph.inject(
 26 |                 byName: name,
 27 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 28 |             )
 29 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:50:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 48 |             try DependencyGraph.inject(
 49 |                 byName: name,
 50 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |             )
 52 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:72:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 70 |             try DependencyGraph.inject(
 71 |                 byName: name,
 72 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 73 |             )
 74 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:100:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 98 |         self.init(locatorMatch: .init(byType: type)) {
 99 |             try DependencyGraph.inject(
100 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
101 |             )
102 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:125:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
123 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
124 |             try DependencyGraph.inject(
125 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
126 |             )
127 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:152:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
150 |         self.init(locatorMatch: .init(byType: SomeDependency.self)) {
151 |             try DependencyGraph.inject(
152 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
153 |             )
154 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:174:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |             try DependencyGraph.inject(
173 |                 byType: Optional<SomeCollection>.self,
174 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
175 |             )
176 |         } unexpectedFailure: {
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:200:26: warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
189 |     ///   - parameters: The parameters used to instantiate the dependency.
190 |     @_disfavoredOverload
191 |     init<V: Hashable, each Parameter: Hashable>(
    |          `- note: consider making generic parameter 'V' conform to the 'Sendable' protocol
192 |         value: V,
193 |         _ parameters: repeat each Parameter,
    :
198 |         self.init(locatorMatch: .init(byValue: value)) {
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
    |                          `- warning: capture of 'value' with non-sendable type 'V' in a '@Sendable' closure; this is an error in the Swift 6 language mode
201 |                 parameters: repeat each parameters
202 |             )
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/PropertyWrappers/Injected+Init.swift:201:41: warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
199 |             try DependencyGraph.inject(
200 |                 byValue: value,
201 |                 parameters: repeat each parameters
    |                                         `- warning: capture of 'parameters' with non-sendable type 'repeat each Parameter' in a '@Sendable' closure; this is an error in the Swift 6 language mode
202 |             )
203 |         } unexpectedFailure: {
[521/540] Compiling Stitcher DependencyContainingCollection.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[522/540] Compiling Stitcher DependencyEagerness.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[523/540] Compiling Stitcher DependencyLocator.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[524/540] Compiling Stitcher DependencyLocatorTraits.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[525/540] Compiling Stitcher DependencyParameters.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[526/540] Compiling Stitcher DependencyScope.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[527/540] Compiling Stitcher InjectionError.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[528/540] Compiling Stitcher ManagedDependencyScopeProviding.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[529/540] Compiling Stitcher ManagedDependencyScopeReceipt.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[530/540] Compiling Stitcher PipelineManagedDependencyScope.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:149:16: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | struct DependencyParameters: Hashable {
    |        `- note: consider making struct 'DependencyParameters' conform to the 'Sendable' protocol
 11 |
 12 |     struct Requirement: Hashable {
    :
147 |     }
148 |
149 |     static let none = DependencyParameters()
    |                |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'DependencyParameters' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | }
151 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:49:10: warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 47 |     case unsupportedOperation
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
    |          `- warning: associated value 'missingDependency' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:50:10: warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// The context used to locate the dependency.
 14 |     public enum DependencyContext: Equatable, CustomStringConvertible {
    |                 `- note: consider making enum 'DependencyContext' conform to the 'Sendable' protocol
 15 |         case name(String)
 16 |         case type(String)
    :
 48 |     case mismatchedDependencyType(String, expected: String)
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
    |          `- warning: associated value 'multipleDependencies' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'InjectionError.DependencyContext'; this is an error in the Swift 6 language mode
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:51:10: warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 49 |     case missingDependency(DependencyContext)
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
    |          `- warning: associated value 'cyclicDependencyReference' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type 'DependencyCycleInstantationBacktrace'; this is an error in the Swift 6 language mode
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
 53 |
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/DependencyCycleDetection/DependencyCycleInstantationBacktrace.swift:11:15: note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
 9 |
10 | /// A backtrace collected during instantiation of a dependency that had a cyclic relationship with another dependency.
11 | public struct DependencyCycleInstantationBacktrace: CustomStringConvertible {
   |               `- note: consider making struct 'DependencyCycleInstantationBacktrace' conform to the 'Sendable' protocol
12 |
13 |     /// The depth of the cycle.
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/InjectionError.swift:52:10: warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 50 |     case multipleDependencies(DependencyContext)
 51 |     case cyclicDependencyReference(DependencyCycleInstantationBacktrace)
 52 |     case invalidDependencyParameters(DependencyContext, DependencyParameterContext, parameters: [AnyHashable])
    |          `- warning: associated value 'invalidDependencyParameters(_:_:parameters:)' of 'Sendable'-conforming enum 'InjectionError' has non-sendable type '(InjectionError.DependencyContext, InjectionError.DependencyParameterContext, parameters: [AnyHashable])'; this is an error in the Swift 6 language mode
 53 |
 54 |     public var description: String {
[531/540] Compiling Stitcher RawThreadKeyError.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
[532/540] Compiling Stitcher ThreadIdentifierThreadValuesKey.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
[533/540] Compiling Stitcher ThreadLocal.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
[534/540] Compiling Stitcher ThreadValues.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
[535/540] Compiling Stitcher ThreadValuesKey.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
[536/540] Compiling Stitcher DefaultValueProviding.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
[537/540] Compiling Stitcher Extensions.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
[538/540] Compiling Stitcher Functions.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
[539/540] Compiling Stitcher Reference.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
[540/540] Compiling Stitcher WeakReference.swift
/host/spi-builder-workspace/Sources/Stitcher/Threads/ThreadIdentifierThreadValuesKey.swift:11:16: warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct ThreadIdentifierThreadValuesKey: ThreadValuesKey {
11 |     static let rawThreadKey = RawThreadKey<Int>()
   |                |- warning: static property 'rawThreadKey' is not concurrency-safe because non-'Sendable' type 'RawThreadKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'rawThreadKey' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     static var defaultValue: Int {
/host/spi-builder-workspace/Sources/Stitcher/Threads/RawThreadKey.swift:10:7: note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | class RawThreadKey<Value> {
   |       `- note: generic class 'RawThreadKey' does not conform to the 'Sendable' protocol
11 |
12 |     private var pthreadKey: pthread_key_t
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/18] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[3/18] Compiling InternalCollectionsUtilities Specialize.swift
[4/54] Compiling OpenCombine CustomCombineIdentifierConvertible.swift
[5/54] Compiling OpenCombine Future.swift
[6/54] Compiling OpenCombine ConduitList.swift
[7/54] Compiling OpenCombine DebugHook.swift
[8/112] Compiling OpenCombine FilterProducer.swift
[9/112] Compiling OpenCombine Locking.swift
[10/112] Compiling OpenCombine Cancellable.swift
[11/112] Compiling OpenCombine Codable.swift
[12/112] Compiling OpenCombine AnyCancellable.swift
[13/112] Compiling OpenCombine AnyPublisher.swift
[14/112] Compiling OpenCombine AnySubscriber.swift
[15/112] Compiling OpenCombine CombineIdentifier.swift
[16/112] Compiling OpenCombine ConcurrencyHelpers.swift
[17/112] Compiling OpenCombine Future+Concurrency.swift
[18/112] Emitting module InternalCollectionsUtilities
[19/112] Compiling OpenCombine GENERATED-Publisher+Concurrency.swift
[20/112] Compiling OpenCombine CurrentValueSubject.swift
[22/190] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[23/190] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[24/245] Compiling HeapModule Heap+Invariants.swift
[25/270] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[26/389] Compiling HeapModule Heap+Descriptions.swift
[27/389] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[28/389] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[29/389] Compiling HashTreeCollections _HashNode+Structural union.swift
[30/389] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[31/389] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[32/389] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[37/389] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[38/389] Compiling HashTreeCollections _HashNode.swift
[39/389] Compiling HashTreeCollections _HashNodeHeader.swift
[40/389] Compiling HashTreeCollections _HashSlot.swift
[41/389] Compiling HashTreeCollections _HashStack.swift
[42/389] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[43/389] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[44/401] Compiling HeapModule Heap.swift
[45/401] Compiling HeapModule _HeapNode.swift
[46/401] Compiling HeapModule Heap+UnsafeHandle.swift
[47/401] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[48/401] Compiling HashTreeCollections _HashNode+Structural filter.swift
[49/401] Emitting module HeapModule
[50/402] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[51/402] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[52/402] Compiling HashTreeCollections TreeDictionary+Keys.swift
[53/402] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[54/402] Compiling HashTreeCollections TreeDictionary+Merge.swift
[55/402] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[56/402] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[57/409] Compiling HashTreeCollections TreeDictionary+Collection.swift
[58/409] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[59/409] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[60/409] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[61/409] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[62/409] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[63/409] Compiling HashTreeCollections TreeDictionary+Filter.swift
[65/409] Compiling HashTreeCollections TreeSet+Hashable.swift
[66/409] Compiling HashTreeCollections TreeSet+Sendable.swift
[67/409] Compiling HashTreeCollections TreeSet+Sequence.swift
[68/409] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[69/409] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[70/409] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[71/409] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[72/409] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[73/409] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[74/409] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[86/419] Compiling HashTreeCollections _HashNode+Storage.swift
[89/419] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[90/419] Compiling HashTreeCollections _HashTreeIterator.swift
[91/419] Compiling HashTreeCollections _HashTreeStatistics.swift
[92/419] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[93/419] Compiling HashTreeCollections _RawHashNode.swift
[94/419] Compiling HashTreeCollections _UnmanagedHashNode.swift
[95/419] Compiling HashTreeCollections _UnsafePath.swift
[96/419] Compiling HashTreeCollections TreeDictionary+Codable.swift
[97/419] Compiling HashTreeCollections _Bucket.swift
[98/419] Compiling HashTreeCollections _Hash.swift
[99/419] Compiling HashTreeCollections _HashLevel.swift
[100/419] Compiling HashTreeCollections _HashNode+Builder.swift
[101/419] Compiling HashTreeCollections _HashNode+Debugging.swift
[102/419] Compiling HashTreeCollections _HashNode+Initializers.swift
[103/419] Compiling HashTreeCollections _HashNode+Invariants.swift
[104/419] Compiling HashTreeCollections _HashNode+Lookups.swift
[113/419] Emitting module DequeModule
[131/421] Compiling BitCollections BitSet.Index.swift
[133/421] Compiling OrderedCollections OrderedSet+Sendable.swift
[155/427] Emitting module BitCollections
[156/427] Compiling BitCollections Range+Utilities.swift
[157/427] Compiling BitCollections Slice+Utilities.swift
[158/427] Compiling BitCollections UInt+Tricks.swift
[159/427] Compiling BitCollections _Word.swift
[160/427] Compiling OrderedCollections OrderedSet.swift
[161/427] Compiling OrderedCollections _UnsafeBitset.swift
[162/427] Compiling HashTreeCollections TreeSet+Equatable.swift
[163/427] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[164/427] Compiling HashTreeCollections TreeSet+Extras.swift
[165/427] Compiling HashTreeCollections TreeSet+Filter.swift
[167/427] Compiling OpenCombine Result.swift
[168/427] Compiling OpenCombine Scheduler.swift
[169/427] Compiling OpenCombine Subject+Void.swift
[170/427] Compiling OpenCombine Subscriber+Void.swift
[171/427] Compiling OpenCombine Subscribers.Assign.swift
[172/427] Compiling OpenCombine Subscribers.Completion.swift
[173/427] Compiling OpenCombine Subscribers.Demand.swift
[174/427] Compiling OpenCombine Subscribers.Sink.swift
[175/427] Compiling OpenCombine Subscribers.swift
[176/427] Compiling OpenCombine Subscription.swift
[177/427] Compiling OpenCombine Subscriptions.swift
[178/427] Compiling OpenCombine _Introspection.swift
[179/427] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[180/427] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[181/427] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[182/427] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[183/427] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[184/427] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[185/427] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[186/427] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[187/427] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[188/427] Compiling HashTreeCollections TreeSet.swift
[192/427] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[193/427] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[194/427] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[195/427] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[196/427] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[197/427] Compiling HashTreeCollections _HashNode+Structural merge.swift
[198/427] Compiling HashTreeCollections _AncestorHashSlots.swift
[199/427] Compiling HashTreeCollections _Bitmap.swift
[202/427] Emitting module OpenCombine
[260/427] Compiling BitCollections BitSet._UnsafeHandle.swift
[261/427] Compiling BitCollections BitSet.swift
[325/437] Emitting module OrderedCollections
[347/438] Compiling OpenCombine Publishers.Throttle.swift
[348/438] Compiling OpenCombine Publishers.Timeout.swift
[349/438] Compiling OpenCombine Publishers.Zip.swift
[350/438] Compiling OpenCombine Publishers.swift
[351/438] Compiling OpenCombine Record.swift
[352/438] Compiling OpenCombine Result.Publisher.swift
[355/438] Compiling _RopeModule Rope+Join.swift
[356/438] Compiling _RopeModule Rope+MutatingForEach.swift
[357/438] Compiling _RopeModule Rope+Remove.swift
[358/438] Compiling _RopeModule Rope+RemoveSubrange.swift
[359/438] Compiling _RopeModule Rope+Split.swift
[360/438] Compiling _RopeModule Optional Utilities.swift
[361/438] Compiling _RopeModule String Utilities.swift
[362/438] Compiling _RopeModule String.Index+ABI.swift
[363/438] Compiling _RopeModule _CharacterRecognizer.swift
[400/441] Emitting module _RopeModule
[440/442] Emitting module OpenCombineDispatch
[441/442] Compiling OpenCombineDispatch DispatchQueue+Scheduler.swift
[442/442] Emitting module HashTreeCollections
[445/446] Compiling Collections Collections.swift
[446/446] Emitting module Collections
[448/518] Compiling Stitcher DependencyGroup.swift
[449/518] Compiling Stitcher DependencyRegistrarBuilder.swift
[450/518] Compiling Stitcher RawDependencyRegistration.swift
[451/518] Compiling Stitcher DependencyGroupRepresenting.swift
[452/518] Compiling Stitcher DependencyRepresenting.swift
[453/518] Compiling Stitcher ManagedSingletonInstanceStorage.swift
[454/518] Compiling Stitcher NeverInstanceStorage.swift
[455/518] Compiling Stitcher SharedInstanceStorage.swift
[456/518] Compiling Stitcher SingletonInstanceStorage.swift
[457/518] Compiling Stitcher InstanceStorage.swift
[458/528] Emitting module Stitcher
[459/528] Compiling Stitcher AutoregisterableDependencyCodeGenerator.swift
[460/528] Compiling Stitcher NameInjectionCodeGenerator.swift
[461/528] Compiling Stitcher TestInjectionCodeGenerator.swift
[462/528] Compiling Stitcher TypeInjectionCodeGenerator.swift
[463/528] Compiling Stitcher InjectionCodeGenerator.swift
[464/528] Compiling Stitcher InjectionCodeGenerators.swift
[465/528] Compiling Stitcher StitcherConfiguration.swift
[466/528] Compiling Stitcher DependencyContainer.swift
[467/528] Compiling Stitcher DependencyFactory+Function.swift
[468/528] Compiling Stitcher DependencyFactory.swift
[469/528] Compiling Stitcher DependencyContainingCollection.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[470/528] Compiling Stitcher DependencyEagerness.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[471/528] Compiling Stitcher DependencyLocator.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[472/528] Compiling Stitcher DependencyLocatorTraits.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[473/528] Compiling Stitcher DependencyParameters.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[474/528] Compiling Stitcher DependencyScope.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[475/528] Compiling Stitcher InjectionError.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[476/528] Compiling Stitcher ManagedDependencyScopeProviding.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[477/528] Compiling Stitcher ManagedDependencyScopeReceipt.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[478/528] Compiling Stitcher PipelineManagedDependencyScope.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Models/DependencyParameters.swift:120:41: warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
118 |
119 |         if tupleValues.isEmpty && mirror.displayStyle != .tuple {
120 |             let singleParameter = tuple as! AnyParameter
    |                                         `- warning: cast from '(/* shape: each Element */ repeat DependencyParameters.AnyParameter)' to unrelated type 'DependencyParameters.AnyParameter' always fails
121 |             tupleValues = [singleParameter]
122 |         }
[479/528] Compiling Stitcher InstanceStorageFactory.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[480/528] Compiling Stitcher InstanceStorageKey.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[481/528] Compiling Stitcher AnyPipeline.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[482/528] Compiling Stitcher AnyPipelineCancellable.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[483/528] Compiling Stitcher Pipeline.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[484/528] Compiling Stitcher PipelineSubject.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[485/528] Compiling Stitcher Stitcher.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[486/528] Compiling Stitcher AsyncTask.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[487/528] Compiling Stitcher CancellableTask.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[488/528] Compiling Stitcher RawThreadKey.swift
/host/spi-builder-workspace/Sources/Stitcher/Task/AsyncTask.swift:37:31: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 35 |
 36 |         private static var defaultQueueCount: Int {
 37 |             let processInfo = ProcessInfo()
    |                               `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 38 |             return processInfo.processorCount - 1
 39 |         }
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[489/528] Compiling Stitcher TypeName.swift
[490/528] Compiling Stitcher Atomic.swift
[491/528] Compiling Stitcher Dependencies.swift
[492/528] Compiling Stitcher Injected+Init.swift
[493/528] Compiling Stitcher Injected.swift
[494/528] Compiling Stitcher AutoregisterableDependency.swift
[495/528] Compiling Stitcher GeneratedDependencyRegistration.swift
[496/528] Compiling Stitcher RegisterableDependency.swift
[497/528] Compiling Stitcher DependenciesRegistrar.swift
[498/528] Compiling Stitcher Dependency.swift
[499/528] Compiling Stitcher InstantionNotificationCenter.swift
[500/528] Compiling Stitcher PostInstantiationAware.swift
[501/528] Compiling Stitcher DependencyCycleDetector.swift
[502/528] Compiling Stitcher DependencyCycleInstantationBacktrace.swift
[503/528] Compiling Stitcher DependencyGraph+Assertions.swift
[504/528] Compiling Stitcher DependencyGraph+NameInjection.swift
[505/528] Compiling Stitcher DependencyGraph+TypeInjection.swift
[506/528] Compiling Stitcher DependencyGraph+ValueInjection.swift
[507/528] Compiling Stitcher DependencyGraph.swift
[508/528] Compiling Stitcher DependencyRegistrarIndex.swift
[509/528] Compiling Stitcher Common.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[510/528] Compiling Stitcher DefaultIndexer.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[511/528] Compiling Stitcher ParallelIndexer.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[512/528] Compiling Stitcher PlainIndexer.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[513/528] Compiling Stitcher IndexedDependencyContainer.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[514/528] Compiling Stitcher Indexing.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[515/528] Compiling Stitcher IndexingCoordinator.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[516/528] Compiling Stitcher IndexingKey.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[517/528] Compiling Stitcher IndexingTask.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[518/528] Compiling Stitcher StorageCleaner.swift
/host/spi-builder-workspace/Sources/Stitcher/DependencyInjection/Graph/Indexing/Implementations/ParallelIndexer.swift:14:32: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
12 |
13 |     static var parallelTaskCount: Int {
14 |         let coreCount = Double(ProcessInfo().processorCount)
   |                                `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
15 |         let maximumSystemLoadFactor = 0.75
16 |         return Int(floor(coreCount * maximumSystemLoadFactor))
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
[519/528] Compiling Stitcher RawThreadKeyError.swift
[520/528] Compiling Stitcher ThreadIdentifierThreadValuesKey.swift
[521/528] Compiling Stitcher ThreadLocal.swift
[522/528] Compiling Stitcher ThreadValues.swift
[523/528] Compiling Stitcher ThreadValuesKey.swift
[524/528] Compiling Stitcher DefaultValueProviding.swift
[525/528] Compiling Stitcher Extensions.swift
[526/528] Compiling Stitcher Functions.swift
[527/528] Compiling Stitcher Reference.swift
[528/528] Compiling Stitcher WeakReference.swift
BUILD FAILURE 6.1 android