The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of llbuild2, reference 1.0.0-alpha5 (9cbb3f), with Swift 6.1 for macOS (SPM) on 1 May 2025 23:55:15 UTC.

Swift 6 data race errors: 40

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

    |                    `- note: class 'LLBCASFileTree' does not conform to the 'Sendable' protocol
 48 |     /// The id of this tree.
 49 |     //
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/TreeMaterialization.swift:61:11: warning: type 'R' does not conform to the 'Sendable' protocol
50 |
51 | extension FXFileID {
52 |     public func materialize<R>(filename: String, _ ctx: Context, _ body: @escaping (AbsolutePath) -> LLBFuture<R>) -> LLBFuture<R> {
   |                             `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
53 |         load(ctx).flatMap { blob in
54 |             let files: [LLBDirectoryEntryID] = [
   :
59 |         }.map { (tree: LLBCASFileTree) in
60 |             UntypedTreeID(dataID: tree.id)
61 |         }.flatMap { treeID in
   |           `- warning: type 'R' does not conform to the 'Sendable' protocol
62 |             treeID.materialize(ctx) { treePath in
63 |                 body(treePath.appending(component: filename))
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/TreeMaterialization.swift:63:17: warning: capture of 'body' with non-sendable type '(AbsolutePath) -> LLBFuture<R>' (aka '(AbsolutePath) -> EventLoopFuture<R>') in a '@Sendable' closure
61 |         }.flatMap { treeID in
62 |             treeID.materialize(ctx) { treePath in
63 |                 body(treePath.appending(component: filename))
   |                 |- warning: capture of 'body' with non-sendable type '(AbsolutePath) -> LLBFuture<R>' (aka '(AbsolutePath) -> EventLoopFuture<R>') in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
64 |             }
65 |         }
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/TreeMaterialization.swift:63:17: warning: capture of 'body' with non-sendable type '(AbsolutePath) -> LLBFuture<R>' (aka '(AbsolutePath) -> EventLoopFuture<R>') in an isolated closure; this is an error in the Swift 6 language mode
61 |         }.flatMap { treeID in
62 |             treeID.materialize(ctx) { treePath in
63 |                 body(treePath.appending(component: filename))
   |                 |- warning: capture of 'body' with non-sendable type '(AbsolutePath) -> LLBFuture<R>' (aka '(AbsolutePath) -> EventLoopFuture<R>') in an isolated closure; this is an error in the Swift 6 language mode
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
64 |             }
65 |         }
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/TreeMaterialization.swift:76:126: warning: type 'R' does not conform to the 'Sendable' protocol
68 |
69 | extension FXTreeID {
70 |     public func materialize<R>(_ ctx: Context, _ body: @escaping (AbsolutePath) -> LLBFuture<R>) -> LLBFuture<R> {
   |                             `- note: consider making generic parameter 'R' conform to the 'Sendable' protocol
71 |         if let path = ctx.fxTreeMaterializer?.materialize(tree: self) {
72 |             return body(path)
   :
74 |
75 |         return withTemporaryDirectory(ctx) { tmp in
76 |             LLBCASFileTree.export(self.dataID, from: ctx.db, to: tmp, stats: LLBCASFileTree.ExportProgressStatsInt64(), ctx).flatMap {
   |                                                                                                                              `- warning: type 'R' does not conform to the 'Sendable' protocol
77 |                 body(tmp)
78 |             }
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/TreeMaterialization.swift:77:17: warning: capture of 'body' with non-sendable type '(AbsolutePath) -> LLBFuture<R>' (aka '(AbsolutePath) -> EventLoopFuture<R>') in a '@Sendable' closure
75 |         return withTemporaryDirectory(ctx) { tmp in
76 |             LLBCASFileTree.export(self.dataID, from: ctx.db, to: tmp, stats: LLBCASFileTree.ExportProgressStatsInt64(), ctx).flatMap {
77 |                 body(tmp)
   |                 |- warning: capture of 'body' with non-sendable type '(AbsolutePath) -> LLBFuture<R>' (aka '(AbsolutePath) -> EventLoopFuture<R>') in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
78 |             }
79 |         }
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:44:21: warning: capture of 'self' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure
 22 |     }
 23 |
 24 |     private class ProcessKiller: LLBCancelProtocol {
    |                   `- note: class 'ProcessKiller' does not conform to the 'Sendable' protocol
 25 |         private let runningProcess: Foundation.Process
 26 |         private let context: Context
    :
 42 |             if let gatherer = context.fxDiagnosticsGatherer {
 43 |                 _ = gatherer.gatherDiagnostics(pid: pid, context).always { result in
 44 |                     self.diagnostics = result
    |                     `- warning: capture of 'self' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure
 45 |                     kill(pid, SIGKILL)
 46 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:77:41: warning: capture of 'killer' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 22 |     }
 23 |
 24 |     private class ProcessKiller: LLBCancelProtocol {
    |                   `- note: class 'ProcessKiller' does not conform to the 'Sendable' protocol
 25 |         private let runningProcess: Foundation.Process
 26 |         private let context: Context
    :
 75 |                 completionPromise.succeed(status)
 76 |             case .uncaughtSignal:
 77 |                 if status == SIGKILL && killer.cancelled {
    |                                         `- warning: capture of 'killer' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 78 |                     completionPromise.fail(ProcessTerminationError.cancelled(
 79 |                         reason: killer.cancellationReason,
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:77:41: warning: implicit capture of 'killer' requires that 'Process.ProcessKiller' conforms to 'Sendable'; this is an error in the Swift 6 language mode
 22 |     }
 23 |
 24 |     private class ProcessKiller: LLBCancelProtocol {
    |                   `- note: class 'ProcessKiller' does not conform to the 'Sendable' protocol
 25 |         private let runningProcess: Foundation.Process
 26 |         private let context: Context
    :
 75 |                 completionPromise.succeed(status)
 76 |             case .uncaughtSignal:
 77 |                 if status == SIGKILL && killer.cancelled {
    |                                         `- warning: implicit capture of 'killer' requires that 'Process.ProcessKiller' conforms to 'Sendable'; this is an error in the Swift 6 language mode
 78 |                     completionPromise.fail(ProcessTerminationError.cancelled(
 79 |                         reason: killer.cancellationReason,
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:44:21: warning: capture of 'self' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure
 22 |     }
 23 |
 24 |     private class ProcessKiller: LLBCancelProtocol {
    |                   `- note: class 'ProcessKiller' does not conform to the 'Sendable' protocol
 25 |         private let runningProcess: Foundation.Process
 26 |         private let context: Context
    :
 42 |             if let gatherer = context.fxDiagnosticsGatherer {
 43 |                 _ = gatherer.gatherDiagnostics(pid: pid, context).always { result in
 44 |                     self.diagnostics = result
    |                     `- warning: capture of 'self' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure
 45 |                     kill(pid, SIGKILL)
 46 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:77:41: warning: capture of 'killer' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 22 |     }
 23 |
 24 |     private class ProcessKiller: LLBCancelProtocol {
    |                   `- note: class 'ProcessKiller' does not conform to the 'Sendable' protocol
 25 |         private let runningProcess: Foundation.Process
 26 |         private let context: Context
    :
 75 |                 completionPromise.succeed(status)
 76 |             case .uncaughtSignal:
 77 |                 if status == SIGKILL && killer.cancelled {
    |                                         `- warning: capture of 'killer' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 78 |                     completionPromise.fail(ProcessTerminationError.cancelled(
 79 |                         reason: killer.cancellationReason,
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:77:41: warning: implicit capture of 'killer' requires that 'Process.ProcessKiller' conforms to 'Sendable'; this is an error in the Swift 6 language mode
 22 |     }
 23 |
 24 |     private class ProcessKiller: LLBCancelProtocol {
    |                   `- note: class 'ProcessKiller' does not conform to the 'Sendable' protocol
 25 |         private let runningProcess: Foundation.Process
 26 |         private let context: Context
    :
 75 |                 completionPromise.succeed(status)
 76 |             case .uncaughtSignal:
 77 |                 if status == SIGKILL && killer.cancelled {
    |                                         `- warning: implicit capture of 'killer' requires that 'Process.ProcessKiller' conforms to 'Sendable'; this is an error in the Swift 6 language mode
 78 |                     completionPromise.fail(ProcessTerminationError.cancelled(
 79 |                         reason: killer.cancellationReason,
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:44:21: warning: capture of 'self' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure
 22 |     }
 23 |
 24 |     private class ProcessKiller: LLBCancelProtocol {
    |                   `- note: class 'ProcessKiller' does not conform to the 'Sendable' protocol
 25 |         private let runningProcess: Foundation.Process
 26 |         private let context: Context
    :
 42 |             if let gatherer = context.fxDiagnosticsGatherer {
 43 |                 _ = gatherer.gatherDiagnostics(pid: pid, context).always { result in
 44 |                     self.diagnostics = result
    |                     `- warning: capture of 'self' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure
 45 |                     kill(pid, SIGKILL)
 46 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:77:41: warning: capture of 'killer' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 22 |     }
 23 |
 24 |     private class ProcessKiller: LLBCancelProtocol {
    |                   `- note: class 'ProcessKiller' does not conform to the 'Sendable' protocol
 25 |         private let runningProcess: Foundation.Process
 26 |         private let context: Context
    :
 75 |                 completionPromise.succeed(status)
 76 |             case .uncaughtSignal:
 77 |                 if status == SIGKILL && killer.cancelled {
    |                                         `- warning: capture of 'killer' with non-sendable type 'Process.ProcessKiller' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 78 |                     completionPromise.fail(ProcessTerminationError.cancelled(
 79 |                         reason: killer.cancellationReason,
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/SpawnProcess.swift:77:41: warning: implicit capture of 'killer' requires that 'Process.ProcessKiller' conforms to 'Sendable'; this is an error in the Swift 6 language mode
 22 |     }
 23 |
 24 |     private class ProcessKiller: LLBCancelProtocol {
    |                   `- note: class 'ProcessKiller' does not conform to the 'Sendable' protocol
 25 |         private let runningProcess: Foundation.Process
 26 |         private let context: Context
    :
 75 |                 completionPromise.succeed(status)
 76 |             case .uncaughtSignal:
 77 |                 if status == SIGKILL && killer.cancelled {
    |                                         `- warning: implicit capture of 'killer' requires that 'Process.ProcessKiller' conforms to 'Sendable'; this is an error in the Swift 6 language mode
 78 |                     completionPromise.fail(ProcessTerminationError.cancelled(
 79 |                         reason: killer.cancellationReason,
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/Deadline.swift:61:17: warning: capture of 'cancellable' with non-sendable type 'LLBCancellableFuture<T>' in a '@Sendable' closure
59 |         if let actualDeadline = nioDeadline {
60 |             let timer = cancellable.future.eventLoop.scheduleTask(deadline: actualDeadline) {
61 |                 cancellable.cancel(reason: "timeout")
   |                 `- warning: capture of 'cancellable' with non-sendable type 'LLBCancellableFuture<T>' in a '@Sendable' closure
62 |             }
63 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-async/Sources/TSFFutures/CancellableFuture.swift:15:15: note: generic struct 'LLBCancellableFuture' does not conform to the 'Sendable' protocol
13 | /// are provided with respect to the order of future's callbacks and the
14 | /// cancel operation returning.
15 | public struct LLBCancellableFuture<T>: LLBCancelProtocol {
   |               `- note: generic struct 'LLBCancellableFuture' does not conform to the 'Sendable' protocol
16 |     /// The underlying future.
17 |     public let future: LLBFuture<T>
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/Deadline.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFFutures'
10 | import NIO
11 | import TSCUtility
12 | import TSFFutures
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFFutures'
13 |
14 | private class DeadlineKey {}
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/Deadline.swift:61:17: warning: capture of 'cancellable' with non-sendable type 'LLBCancellableFuture<T>' in a '@Sendable' closure
59 |         if let actualDeadline = nioDeadline {
60 |             let timer = cancellable.future.eventLoop.scheduleTask(deadline: actualDeadline) {
61 |                 cancellable.cancel(reason: "timeout")
   |                 `- warning: capture of 'cancellable' with non-sendable type 'LLBCancellableFuture<T>' in a '@Sendable' closure
62 |             }
63 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-async/Sources/TSFFutures/CancellableFuture.swift:15:15: note: generic struct 'LLBCancellableFuture' does not conform to the 'Sendable' protocol
13 | /// are provided with respect to the order of future's callbacks and the
14 | /// cancel operation returning.
15 | public struct LLBCancellableFuture<T>: LLBCancelProtocol {
   |               `- note: generic struct 'LLBCancellableFuture' does not conform to the 'Sendable' protocol
16 |     /// The underlying future.
17 |     public let future: LLBFuture<T>
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/Deadline.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFFutures'
10 | import NIO
11 | import TSCUtility
12 | import TSFFutures
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFFutures'
13 |
14 | private class DeadlineKey {}
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/Deadline.swift:61:17: warning: capture of 'cancellable' with non-sendable type 'LLBCancellableFuture<T>' in a '@Sendable' closure
59 |         if let actualDeadline = nioDeadline {
60 |             let timer = cancellable.future.eventLoop.scheduleTask(deadline: actualDeadline) {
61 |                 cancellable.cancel(reason: "timeout")
   |                 `- warning: capture of 'cancellable' with non-sendable type 'LLBCancellableFuture<T>' in a '@Sendable' closure
62 |             }
63 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-async/Sources/TSFFutures/CancellableFuture.swift:15:15: note: generic struct 'LLBCancellableFuture' does not conform to the 'Sendable' protocol
13 | /// are provided with respect to the order of future's callbacks and the
14 | /// cancel operation returning.
15 | public struct LLBCancellableFuture<T>: LLBCancelProtocol {
   |               `- note: generic struct 'LLBCancellableFuture' does not conform to the 'Sendable' protocol
16 |     /// The underlying future.
17 |     public let future: LLBFuture<T>
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/Deadline.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFFutures'
10 | import NIO
11 | import TSCUtility
12 | import TSFFutures
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFFutures'
13 |
14 | private class DeadlineKey {}
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/Deadline.swift:61:17: warning: capture of 'cancellable' with non-sendable type 'LLBCancellableFuture<T>' in a '@Sendable' closure
59 |         if let actualDeadline = nioDeadline {
60 |             let timer = cancellable.future.eventLoop.scheduleTask(deadline: actualDeadline) {
61 |                 cancellable.cancel(reason: "timeout")
   |                 `- warning: capture of 'cancellable' with non-sendable type 'LLBCancellableFuture<T>' in a '@Sendable' closure
62 |             }
63 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-async/Sources/TSFFutures/CancellableFuture.swift:15:15: note: generic struct 'LLBCancellableFuture' does not conform to the 'Sendable' protocol
13 | /// are provided with respect to the order of future's callbacks and the
14 | /// cancel operation returning.
15 | public struct LLBCancellableFuture<T>: LLBCancelProtocol {
   |               `- note: generic struct 'LLBCancellableFuture' does not conform to the 'Sendable' protocol
16 |     /// The underlying future.
17 |     public let future: LLBFuture<T>
/Users/admin/builder/spi-builder-workspace/Sources/llbuild2fx/Deadline.swift:12:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFFutures'
10 | import NIO
11 | import TSCUtility
12 | import TSFFutures
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFFutures'
13 |
14 | private class DeadlineKey {}
[1377/1440] Compiling GRPC ServerErrorProcessor.swift
[1378/1440] Compiling GRPC Stopwatch.swift
[1379/1440] Compiling GRPC StreamEvent.swift
[1380/1440] Compiling GRPC TLSVerificationHandler.swift
[1381/1440] Compiling GRPC TLSVersion.swift
[1382/1440] Compiling GRPC TimeLimit.swift
[1383/1440] Compiling GRPC UserInfo.swift
[1384/1440] Compiling GRPC Version.swift
[1385/1440] Compiling GRPC WebCORSHandler.swift
[1386/1440] Compiling GRPC WriteCapturingHandler.swift
[1387/1440] Compiling GRPC _EmbeddedThroughput.swift
[1388/1440] Compiling GRPC _FakeResponseStream.swift
[1389/1440] Compiling GRPC _GRPCClientCodecHandler.swift
[1390/1440] Compiling GRPC _MessageContext.swift
[1391/1440] Compiling llbuild2fx Value.swift
[1392/1440] Compiling llbuild2fx Versioning.swift
[1393/1440] Compiling llbuild2fx WrappedDataID.swift
[1394/1440] Emitting module GRPC
[1395/1442] Compiling GRPC Array+BoundsCheck.swift
[1396/1442] Compiling GRPC ServerHandlerStateMachine+Actions.swift
[1397/1442] Compiling GRPC ServerHandlerStateMachine+Draining.swift
[1398/1442] Compiling GRPC ServerHandlerStateMachine+Finished.swift
[1399/1442] Compiling GRPC ServerHandlerStateMachine+Handling.swift
[1400/1442] Compiling GRPC ServerHandlerStateMachine+Idle.swift
[1401/1442] Compiling GRPC ServerHandlerStateMachine.swift
[1402/1442] Compiling GRPC ServerInterceptorStateMachine+Actions.swift
[1403/1442] Compiling GRPC ServerInterceptorStateMachine+Finished.swift
[1404/1442] Compiling GRPC ServerInterceptorStateMachine+Intercepting.swift
[1405/1442] Compiling GRPC ServerInterceptorStateMachine.swift
[1406/1442] Compiling GRPC StreamState.swift
[1407/1442] Compiling GRPC Call+AsyncRequestStreamWriter.swift
[1408/1442] Compiling GRPC CancellationError+GRPCStatusTransformable.swift
[1409/1442] Compiling GRPC GRPCAsyncBidirectionalStreamingCall.swift
[1410/1442] Compiling GRPC UnaryCall.swift
[1411/1442] Compiling GRPC ClientConnection.swift
[1412/1442] Compiling GRPC ClientConnectionConfiguration+NIOSSL.swift
[1413/1442] Compiling GRPC ClientErrorDelegate.swift
[1414/1442] Compiling GRPC CoalescingLengthPrefixedMessageWriter.swift
[1415/1442] Compiling GRPC CompressionAlgorithm.swift
[1416/1442] Compiling GRPC DecompressionLimit.swift
[1417/1442] Compiling GRPC MessageEncoding.swift
[1418/1442] Compiling GRPC Zlib.swift
[1419/1442] Compiling GRPC ConnectionBackoff.swift
[1420/1442] Compiling GRPC ConnectionKeepalive.swift
[1421/1442] Compiling GRPC ConnectionManager+Delegates.swift
[1422/1442] Compiling GRPC ConnectionManager.swift
[1423/1442] Compiling GRPC ConnectionManagerChannelProvider.swift
[1424/1442] Compiling GRPC GRPCIdleHandlerStateMachine.swift
[1425/1442] Compiling GRPC GRPCKeepaliveHandlers.swift
[1426/1442] Compiling GRPC GRPCPayload.swift
[1427/1442] Compiling GRPC GRPCServerPipelineConfigurator.swift
[1428/1442] Compiling GRPC GRPCServerRequestRoutingHandler.swift
[1429/1442] Compiling GRPC GRPCServiceDescription.swift
[1430/1442] Compiling GRPC GRPCStatus.swift
[1431/1442] Compiling GRPC GRPCStatusAndMetadata.swift
[1432/1442] Compiling GRPC GRPCStatusMessageMarshaller.swift
[1433/1442] Compiling GRPC GRPCTLSConfiguration.swift
[1434/1442] Compiling GRPC GRPCTimeout.swift
[1435/1442] Compiling GRPC GRPCWebToHTTP2ServerCodec.swift
[1436/1442] Compiling GRPC HTTP2ToRawGRPCServerCodec.swift
[1437/1442] Compiling GRPC HTTP2ToRawGRPCStateMachine.swift
[1438/1442] Emitting module llbuild2
[1439/1442] Compiling llbuild2 Reexport.swift
[1440/1461] Compiling BazelRemoteAPI bytestream.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:443:80: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
441 | #endif // compiler(>=5.6)
442 |
443 | public protocol Google_Longrunning_OperationsClientInterceptorFactoryProtocol: GRPCSendable {
    |                                                                                |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
    |                                                                                `- note: use 'Swift.Sendable' instead
444 |
445 |   /// - Returns: Interceptors to use when invoking 'listOperations'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:644:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
642 |   /// Lists operations that match the specified filter in the request. If the
643 |   /// server doesn't support this method, it returns `UNIMPLEMENTED`.
644 |   @Sendable func listOperations(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
645 |     request: Google_Longrunning_ListOperationsRequest,
646 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:652:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
650 |   /// method to poll the operation result at intervals as recommended by the API
651 |   /// service.
652 |   @Sendable func getOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
653 |     request: Google_Longrunning_GetOperationRequest,
654 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:661:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
659 |   /// operation. If the server doesn't support this method, it returns
660 |   /// `google.rpc.Code.UNIMPLEMENTED`.
661 |   @Sendable func deleteOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
662 |     request: Google_Longrunning_DeleteOperationRequest,
663 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:677:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
675 |   /// [google.rpc.Status.code][google.rpc.Status.code] of `1`, corresponding to
676 |   /// `Code.CANCELLED`.
677 |   @Sendable func cancelOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
678 |     request: Google_Longrunning_CancelOperationRequest,
679 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:691:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
689 |   /// state before the specified timeout (including immediately), meaning even an
690 |   /// immediate response is no guarantee that the operation is done.
691 |   @Sendable func waitOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
692 |     request: Google_Longrunning_WaitOperationRequest,
693 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1441/1461] Compiling BazelRemoteAPI operations.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:443:80: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
441 | #endif // compiler(>=5.6)
442 |
443 | public protocol Google_Longrunning_OperationsClientInterceptorFactoryProtocol: GRPCSendable {
    |                                                                                |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
    |                                                                                `- note: use 'Swift.Sendable' instead
444 |
445 |   /// - Returns: Interceptors to use when invoking 'listOperations'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:644:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
642 |   /// Lists operations that match the specified filter in the request. If the
643 |   /// server doesn't support this method, it returns `UNIMPLEMENTED`.
644 |   @Sendable func listOperations(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
645 |     request: Google_Longrunning_ListOperationsRequest,
646 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:652:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
650 |   /// method to poll the operation result at intervals as recommended by the API
651 |   /// service.
652 |   @Sendable func getOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
653 |     request: Google_Longrunning_GetOperationRequest,
654 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:661:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
659 |   /// operation. If the server doesn't support this method, it returns
660 |   /// `google.rpc.Code.UNIMPLEMENTED`.
661 |   @Sendable func deleteOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
662 |     request: Google_Longrunning_DeleteOperationRequest,
663 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:677:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
675 |   /// [google.rpc.Status.code][google.rpc.Status.code] of `1`, corresponding to
676 |   /// `Code.CANCELLED`.
677 |   @Sendable func cancelOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
678 |     request: Google_Longrunning_CancelOperationRequest,
679 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:691:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
689 |   /// state before the specified timeout (including immediately), meaning even an
690 |   /// immediate response is no guarantee that the operation is done.
691 |   @Sendable func waitOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
692 |     request: Google_Longrunning_WaitOperationRequest,
693 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1442/1461] Compiling BazelRemoteAPI operations.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/rpc/code.pb.swift:258:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
256 | extension Google_Rpc_Code: CaseIterable {
257 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
258 |   public static var allCases: [Google_Rpc_Code] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
259 |     .ok,
260 |     .cancelled,
[1443/1461] Compiling BazelRemoteAPI code.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/rpc/code.pb.swift:258:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
256 | extension Google_Rpc_Code: CaseIterable {
257 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
258 |   public static var allCases: [Google_Rpc_Code] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
259 |     .ok,
260 |     .cancelled,
[1444/1461] Compiling BazelRemoteAPI launch_stage.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/launch_stage.pb.swift:126:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
124 | extension Google_Api_LaunchStage: CaseIterable {
125 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
126 |   public static var allCases: [Google_Api_LaunchStage] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |     .unspecified,
128 |     .unimplemented,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:391:79: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
389 | #endif // compiler(>=5.6)
390 |
391 | public protocol Google_Bytestream_ByteStreamClientInterceptorFactoryProtocol: GRPCSendable {
    |                                                                               |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
    |                                                                               `- note: use 'Swift.Sendable' instead
392 |
393 |   /// - Returns: Interceptors to use when invoking 'read'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:589:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
587 |   /// of bytes. The bytes are returned in a sequence of responses, and the
588 |   /// responses are delivered as the results of a server-side streaming RPC.
589 |   @Sendable func read(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
590 |     request: Google_Bytestream_ReadRequest,
591 |     responseStream: GRPCAsyncResponseStreamWriter<Google_Bytestream_ReadResponse>,
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:617:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
615 |   /// service was able to commit and whether the service views the resource as
616 |   /// `complete` or not.
617 |   @Sendable func write(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
618 |     requestStream: GRPCAsyncRequestStream<Google_Bytestream_WriteRequest>,
619 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:636:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
634 |   /// resource name, the sequence of returned `committed_size` values will be
635 |   /// non-decreasing.
636 |   @Sendable func queryWriteStatus(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
637 |     request: Google_Bytestream_QueryWriteStatusRequest,
638 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1445/1461] Compiling BazelRemoteAPI bytestream.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/launch_stage.pb.swift:126:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
124 | extension Google_Api_LaunchStage: CaseIterable {
125 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
126 |   public static var allCases: [Google_Api_LaunchStage] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |     .unspecified,
128 |     .unimplemented,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:391:79: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
389 | #endif // compiler(>=5.6)
390 |
391 | public protocol Google_Bytestream_ByteStreamClientInterceptorFactoryProtocol: GRPCSendable {
    |                                                                               |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
    |                                                                               `- note: use 'Swift.Sendable' instead
392 |
393 |   /// - Returns: Interceptors to use when invoking 'read'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:589:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
587 |   /// of bytes. The bytes are returned in a sequence of responses, and the
588 |   /// responses are delivered as the results of a server-side streaming RPC.
589 |   @Sendable func read(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
590 |     request: Google_Bytestream_ReadRequest,
591 |     responseStream: GRPCAsyncResponseStreamWriter<Google_Bytestream_ReadResponse>,
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:617:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
615 |   /// service was able to commit and whether the service views the resource as
616 |   /// `complete` or not.
617 |   @Sendable func write(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
618 |     requestStream: GRPCAsyncRequestStream<Google_Bytestream_WriteRequest>,
619 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:636:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
634 |   /// resource name, the sequence of returned `committed_size` values will be
635 |   /// non-decreasing.
636 |   @Sendable func queryWriteStatus(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
637 |     request: Google_Bytestream_QueryWriteStatusRequest,
638 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1446/1461] Compiling BazelRemoteAPI error_details.pb.swift
[1447/1461] Compiling BazelRemoteAPI http.pb.2.swift
[1448/1463] Compiling BazelRemoteAPI status.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:11:39: warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
 9 | // Type aliases to drop the autogenerated prefix which is not really required since we're keeping the generated code in its own target.
10 |
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
   |                                       |- warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
   |                                       `- note: use 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient' instead
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:13:52: warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
   |                                                    |- warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
   |                                                    `- note: use 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient' instead
14 | public typealias ServerCapabilities = Build_Bazel_Remote_Execution_V2_ServerCapabilities
15 |
[1449/1463] Compiling BazelRemoteAPI Typealiases.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:11:39: warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
 9 | // Type aliases to drop the autogenerated prefix which is not really required since we're keeping the generated code in its own target.
10 |
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
   |                                       |- warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
   |                                       `- note: use 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient' instead
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:13:52: warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
   |                                                    |- warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
   |                                                    `- note: use 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient' instead
14 | public typealias ServerCapabilities = Build_Bazel_Remote_Execution_V2_ServerCapabilities
15 |
[1450/1463] Compiling BazelRemoteAPI semver.pb.swift
[1451/1463] Compiling BazelRemoteAPI annotations.pb.swift
[1452/1463] Compiling BazelRemoteAPI client.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:105:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 103 | extension Google_Api_ClientLibraryOrganization: CaseIterable {
 104 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 105 |   public static var allCases: [Google_Api_ClientLibraryOrganization] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 106 |     .unspecified,
 107 |     .cloud,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:163:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 161 | extension Google_Api_ClientLibraryDestination: CaseIterable {
 162 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 163 |   public static var allCases: [Google_Api_ClientLibraryDestination] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 164 |     .unspecified,
 165 |     .github,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:1200:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
1185 |   ]
1186 |
1187 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
1188 |     var _version: String = String()
1189 |     var _launchStage: Google_Api_LaunchStage = .unspecified
     :
1198 |     var _goSettings: Google_Api_GoSettings? = nil
1199 |
1200 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1201 |
1202 |     private init() {}
[1453/1463] Compiling BazelRemoteAPI http.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:105:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 103 | extension Google_Api_ClientLibraryOrganization: CaseIterable {
 104 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 105 |   public static var allCases: [Google_Api_ClientLibraryOrganization] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 106 |     .unspecified,
 107 |     .cloud,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:163:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 161 | extension Google_Api_ClientLibraryDestination: CaseIterable {
 162 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 163 |   public static var allCases: [Google_Api_ClientLibraryDestination] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 164 |     .unspecified,
 165 |     .github,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:1200:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
1185 |   ]
1186 |
1187 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
1188 |     var _version: String = String()
1189 |     var _launchStage: Google_Api_LaunchStage = .unspecified
     :
1198 |     var _goSettings: Google_Api_GoSettings? = nil
1199 |
1200 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1201 |
1202 |     private init() {}
[1454/1463] Compiling BazelRemoteAPI remote_logstream.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:322:99: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
320 | #endif // compiler(>=5.6)
321 |
322 | public protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceClientInterceptorFactoryProtocol: GRPCSendable {
    |                                                                                                   |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
    |                                                                                                   `- note: use 'Swift.Sendable' instead
323 |
324 |   /// - Returns: Interceptors to use when invoking 'createLogStream'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:526:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
524 |   /// Callers of CreateLogStream are expected to NOT publish the
525 |   /// `write_resource_name`.
526 |   @Sendable func createLogStream(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
527 |     request: Build_Bazel_Remote_Logstream_V1_CreateLogStreamRequest,
528 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1455/1463] Compiling BazelRemoteAPI remote_logstream.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:322:99: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
320 | #endif // compiler(>=5.6)
321 |
322 | public protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceClientInterceptorFactoryProtocol: GRPCSendable {
    |                                                                                                   |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
    |                                                                                                   `- note: use 'Swift.Sendable' instead
323 |
324 |   /// - Returns: Interceptors to use when invoking 'createLogStream'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:526:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
524 |   /// Callers of CreateLogStream are expected to NOT publish the
525 |   /// `write_resource_name`.
526 |   @Sendable func createLogStream(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
527 |     request: Build_Bazel_Remote_Logstream_V1_CreateLogStreamRequest,
528 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1456/1463] Compiling BazelRemoteAPI remote_execution.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:354:92: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 352 | #endif // compiler(>=5.6)
 353 |
 354 | public protocol Build_Bazel_Remote_Execution_V2_ExecutionClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                            |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                            `- note: use 'Swift.Sendable' instead
 355 |
 356 |   /// - Returns: Interceptors to use when invoking 'execute'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:665:94: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 663 | #endif // compiler(>=5.6)
 664 |
 665 | public protocol Build_Bazel_Remote_Execution_V2_ActionCacheClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                              |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                              `- note: use 'Swift.Sendable' instead
 666 |
 667 |   /// - Returns: Interceptors to use when invoking 'getActionResult'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1399:108: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1397 | #endif // compiler(>=5.6)
1398 |
1399 | public protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                                            |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                                            `- note: use 'Swift.Sendable' instead
1400 |
1401 |   /// - Returns: Interceptors to use when invoking 'findMissingBlobs'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1638:95: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1636 | #endif // compiler(>=5.6)
1637 |
1638 | public protocol Build_Bazel_Remote_Execution_V2_CapabilitiesClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                               |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                               `- note: use 'Swift.Sendable' instead
1639 |
1640 |   /// - Returns: Interceptors to use when invoking 'getCapabilities'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1893:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1891 |   /// multiple times, potentially in parallel. These redundant executions MAY
1892 |   /// continue to run, even if the operation is completed.
1893 |   @Sendable func execute(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1894 |     request: Build_Bazel_Remote_Execution_V2_ExecuteRequest,
1895 |     responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1913:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1911 |   ///   Operations API DeleteOperation method and it was called for the current
1912 |   ///   execution. The client should call `Execute` to retry.
1913 |   @Sendable func waitExecution(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1914 |     request: Build_Bazel_Remote_Execution_V2_WaitExecutionRequest,
1915 |     responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2130:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2128 |   ///
2129 |   /// * `NOT_FOUND`: The requested `ActionResult` is not in the cache.
2130 |   @Sendable func getActionResult(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2131 |     request: Build_Bazel_Remote_Execution_V2_GetActionResultRequest,
2132 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2154:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2152 |   /// * `RESOURCE_EXHAUSTED`: There is insufficient storage space to add the
2153 |   ///   entry to the cache.
2154 |   @Sendable func updateActionResult(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2155 |     request: Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest,
2156 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2706:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2704 |   ///
2705 |   /// There are no method-specific errors.
2706 |   @Sendable func findMissingBlobs(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2707 |     request: Build_Bazel_Remote_Execution_V2_FindMissingBlobsRequest,
2708 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2735:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2733 |   /// [Digest][build.bazel.remote.execution.v2.Digest] does not match the
2734 |   /// provided data.
2735 |   @Sendable func batchUpdateBlobs(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2736 |     request: Build_Bazel_Remote_Execution_V2_BatchUpdateBlobsRequest,
2737 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2760:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2758 |   /// Every error on individual read will be returned in the corresponding digest
2759 |   /// status.
2760 |   @Sendable func batchReadBlobs(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2761 |     request: Build_Bazel_Remote_Execution_V2_BatchReadBlobsRequest,
2762 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2788:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2786 |   ///
2787 |   /// * `NOT_FOUND`: The requested tree root is not present in the CAS.
2788 |   @Sendable func getTree(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2789 |     request: Build_Bazel_Remote_Execution_V2_GetTreeRequest,
2790 |     responseStream: GRPCAsyncResponseStreamWriter<Build_Bazel_Remote_Execution_V2_GetTreeResponse>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2991:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2989 |   ///
2990 |   /// There are no method-specific errors.
2991 |   @Sendable func getCapabilities(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2992 |     request: Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest,
2993 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:405:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 403 | extension Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat: CaseIterable {
 404 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 405 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 406 |     .treeOnly,
 407 |     .directoryOnly,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:1668:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1666 | extension Build_Bazel_Remote_Execution_V2_ExecutionStage.Value: CaseIterable {
1667 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
1668 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_ExecutionStage.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1669 |     .unknown,
1670 |     .cacheCheck,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2440:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2438 | extension Build_Bazel_Remote_Execution_V2_DigestFunction.Value: CaseIterable {
2439 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
2440 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_DigestFunction.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2441 |     .unknown,
2442 |     .sha256,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2560:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2558 | extension Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value: CaseIterable {
2559 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
2560 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2561 |     .unknown,
2562 |     .disallowed,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2632:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2630 | extension Build_Bazel_Remote_Execution_V2_Compressor.Value: CaseIterable {
2631 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
2632 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_Compressor.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2633 |     .identity,
2634 |     .zstd,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:3522:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
3506 |   ]
3507 |
3508 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
3509 |     var _worker: String = String()
3510 |     var _queuedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil
     :
3520 |     var _auxiliaryMetadata: [SwiftProtobuf.Google_Protobuf_Any] = []
3521 |
3522 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3523 |
3524 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4154:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4145 |   ]
4146 |
4147 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4148 |     var _result: Build_Bazel_Remote_Execution_V2_ActionResult? = nil
4149 |     var _cachedResult: Bool = false
     :
4152 |     var _message: String = String()
4153 |
4154 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4155 |
4156 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4447:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4438 |   ]
4439 |
4440 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4441 |     var _instanceName: String = String()
4442 |     var _actionDigest: Build_Bazel_Remote_Execution_V2_Digest? = nil
     :
4445 |     var _digestFunction: Build_Bazel_Remote_Execution_V2_DigestFunction.Value = .unknown
4446 |
4447 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4448 |
4449 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:5055:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
5046 |   ]
5047 |
5048 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
5049 |     var _cacheCapabilities: Build_Bazel_Remote_Execution_V2_CacheCapabilities? = nil
5050 |     var _executionCapabilities: Build_Bazel_Remote_Execution_V2_ExecutionCapabilities? = nil
     :
5053 |     var _highApiVersion: Build_Bazel_Semver_SemVer? = nil
5054 |
5055 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5056 |
5057 |     private init() {}
[1457/1463] Compiling BazelRemoteAPI remote_execution.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:354:92: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 352 | #endif // compiler(>=5.6)
 353 |
 354 | public protocol Build_Bazel_Remote_Execution_V2_ExecutionClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                            |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                            `- note: use 'Swift.Sendable' instead
 355 |
 356 |   /// - Returns: Interceptors to use when invoking 'execute'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:665:94: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 663 | #endif // compiler(>=5.6)
 664 |
 665 | public protocol Build_Bazel_Remote_Execution_V2_ActionCacheClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                              |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                              `- note: use 'Swift.Sendable' instead
 666 |
 667 |   /// - Returns: Interceptors to use when invoking 'getActionResult'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1399:108: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1397 | #endif // compiler(>=5.6)
1398 |
1399 | public protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                                            |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                                            `- note: use 'Swift.Sendable' instead
1400 |
1401 |   /// - Returns: Interceptors to use when invoking 'findMissingBlobs'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1638:95: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1636 | #endif // compiler(>=5.6)
1637 |
1638 | public protocol Build_Bazel_Remote_Execution_V2_CapabilitiesClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                               |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                               `- note: use 'Swift.Sendable' instead
1639 |
1640 |   /// - Returns: Interceptors to use when invoking 'getCapabilities'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1893:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1891 |   /// multiple times, potentially in parallel. These redundant executions MAY
1892 |   /// continue to run, even if the operation is completed.
1893 |   @Sendable func execute(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1894 |     request: Build_Bazel_Remote_Execution_V2_ExecuteRequest,
1895 |     responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1913:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1911 |   ///   Operations API DeleteOperation method and it was called for the current
1912 |   ///   execution. The client should call `Execute` to retry.
1913 |   @Sendable func waitExecution(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1914 |     request: Build_Bazel_Remote_Execution_V2_WaitExecutionRequest,
1915 |     responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2130:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2128 |   ///
2129 |   /// * `NOT_FOUND`: The requested `ActionResult` is not in the cache.
2130 |   @Sendable func getActionResult(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2131 |     request: Build_Bazel_Remote_Execution_V2_GetActionResultRequest,
2132 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2154:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2152 |   /// * `RESOURCE_EXHAUSTED`: There is insufficient storage space to add the
2153 |   ///   entry to the cache.
2154 |   @Sendable func updateActionResult(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2155 |     request: Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest,
2156 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2706:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2704 |   ///
2705 |   /// There are no method-specific errors.
2706 |   @Sendable func findMissingBlobs(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2707 |     request: Build_Bazel_Remote_Execution_V2_FindMissingBlobsRequest,
2708 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2735:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2733 |   /// [Digest][build.bazel.remote.execution.v2.Digest] does not match the
2734 |   /// provided data.
2735 |   @Sendable func batchUpdateBlobs(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2736 |     request: Build_Bazel_Remote_Execution_V2_BatchUpdateBlobsRequest,
2737 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2760:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2758 |   /// Every error on individual read will be returned in the corresponding digest
2759 |   /// status.
2760 |   @Sendable func batchReadBlobs(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2761 |     request: Build_Bazel_Remote_Execution_V2_BatchReadBlobsRequest,
2762 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2788:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2786 |   ///
2787 |   /// * `NOT_FOUND`: The requested tree root is not present in the CAS.
2788 |   @Sendable func getTree(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2789 |     request: Build_Bazel_Remote_Execution_V2_GetTreeRequest,
2790 |     responseStream: GRPCAsyncResponseStreamWriter<Build_Bazel_Remote_Execution_V2_GetTreeResponse>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2991:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2989 |   ///
2990 |   /// There are no method-specific errors.
2991 |   @Sendable func getCapabilities(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2992 |     request: Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest,
2993 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:405:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 403 | extension Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat: CaseIterable {
 404 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 405 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 406 |     .treeOnly,
 407 |     .directoryOnly,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:1668:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1666 | extension Build_Bazel_Remote_Execution_V2_ExecutionStage.Value: CaseIterable {
1667 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
1668 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_ExecutionStage.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1669 |     .unknown,
1670 |     .cacheCheck,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2440:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2438 | extension Build_Bazel_Remote_Execution_V2_DigestFunction.Value: CaseIterable {
2439 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
2440 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_DigestFunction.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2441 |     .unknown,
2442 |     .sha256,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2560:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2558 | extension Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value: CaseIterable {
2559 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
2560 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2561 |     .unknown,
2562 |     .disallowed,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2632:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2630 | extension Build_Bazel_Remote_Execution_V2_Compressor.Value: CaseIterable {
2631 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
2632 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_Compressor.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2633 |     .identity,
2634 |     .zstd,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:3522:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
3506 |   ]
3507 |
3508 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
3509 |     var _worker: String = String()
3510 |     var _queuedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil
     :
3520 |     var _auxiliaryMetadata: [SwiftProtobuf.Google_Protobuf_Any] = []
3521 |
3522 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3523 |
3524 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4154:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4145 |   ]
4146 |
4147 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4148 |     var _result: Build_Bazel_Remote_Execution_V2_ActionResult? = nil
4149 |     var _cachedResult: Bool = false
     :
4152 |     var _message: String = String()
4153 |
4154 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4155 |
4156 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4447:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4438 |   ]
4439 |
4440 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4441 |     var _instanceName: String = String()
4442 |     var _actionDigest: Build_Bazel_Remote_Execution_V2_Digest? = nil
     :
4445 |     var _digestFunction: Build_Bazel_Remote_Execution_V2_DigestFunction.Value = .unknown
4446 |
4447 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4448 |
4449 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:5055:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
5046 |   ]
5047 |
5048 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
5049 |     var _cacheCapabilities: Build_Bazel_Remote_Execution_V2_CacheCapabilities? = nil
5050 |     var _executionCapabilities: Build_Bazel_Remote_Execution_V2_ExecutionCapabilities? = nil
     :
5053 |     var _highApiVersion: Build_Bazel_Semver_SemVer? = nil
5054 |
5055 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5056 |
5057 |     private init() {}
[1458/1463] Emitting module BazelRemoteAPI
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:317:84: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 315 | #endif // compiler(>=5.6)
 316 |
 317 | public protocol Build_Bazel_Remote_Asset_V1_FetchClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                    |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                    `- note: use 'Swift.Sendable' instead
 318 |
 319 |   /// - Returns: Interceptors to use when invoking 'fetchBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:614:83: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 612 | #endif // compiler(>=5.6)
 613 |
 614 | public protocol Build_Bazel_Remote_Asset_V1_PushClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                   |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                   `- note: use 'Swift.Sendable' instead
 615 |
 616 |   /// - Returns: Interceptors to use when invoking 'pushBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:833:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 831 |   /// `qualifiers.name` and a `description` of `"{qualifier}" not supported`
 832 |   /// indicating the name of the unsupported qualifier.
 833 |   @Sendable func fetchBlob(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 834 |     request: Build_Bazel_Remote_Asset_V1_FetchBlobRequest,
 835 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:838:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 836 |   ) async throws -> Build_Bazel_Remote_Asset_V1_FetchBlobResponse
 837 |
 838 |   @Sendable func fetchDirectory(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 839 |     request: Build_Bazel_Remote_Asset_V1_FetchDirectoryRequest,
 840 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1061:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1059 |   /// * `INTERNAL`: An internal error occurred while performing the operation.
1060 |   ///   The client should retry.
1061 |   @Sendable func pushBlob(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1062 |     request: Build_Bazel_Remote_Asset_V1_PushBlobRequest,
1063 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1066:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1064 |   ) async throws -> Build_Bazel_Remote_Asset_V1_PushBlobResponse
1065 |
1066 |   @Sendable func pushDirectory(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1067 |     request: Build_Bazel_Remote_Asset_V1_PushDirectoryRequest,
1068 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:354:92: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 352 | #endif // compiler(>=5.6)
 353 |
 354 | public protocol Build_Bazel_Remote_Execution_V2_ExecutionClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                            |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                            `- note: use 'Swift.Sendable' instead
 355 |
 356 |   /// - Returns: Interceptors to use when invoking 'execute'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:665:94: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 663 | #endif // compiler(>=5.6)
 664 |
 665 | public protocol Build_Bazel_Remote_Execution_V2_ActionCacheClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                              |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                              `- note: use 'Swift.Sendable' instead
 666 |
 667 |   /// - Returns: Interceptors to use when invoking 'getActionResult'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1399:108: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1397 | #endif // compiler(>=5.6)
1398 |
1399 | public protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                                            |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                                            `- note: use 'Swift.Sendable' instead
1400 |
1401 |   /// - Returns: Interceptors to use when invoking 'findMissingBlobs'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1638:95: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
1636 | #endif // compiler(>=5.6)
1637 |
1638 | public protocol Build_Bazel_Remote_Execution_V2_CapabilitiesClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                               |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                               `- note: use 'Swift.Sendable' instead
1639 |
1640 |   /// - Returns: Interceptors to use when invoking 'getCapabilities'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1893:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1891 |   /// multiple times, potentially in parallel. These redundant executions MAY
1892 |   /// continue to run, even if the operation is completed.
1893 |   @Sendable func execute(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1894 |     request: Build_Bazel_Remote_Execution_V2_ExecuteRequest,
1895 |     responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:1913:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1911 |   ///   Operations API DeleteOperation method and it was called for the current
1912 |   ///   execution. The client should call `Execute` to retry.
1913 |   @Sendable func waitExecution(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1914 |     request: Build_Bazel_Remote_Execution_V2_WaitExecutionRequest,
1915 |     responseStream: GRPCAsyncResponseStreamWriter<Google_Longrunning_Operation>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ExecutionAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2130:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2128 |   ///
2129 |   /// * `NOT_FOUND`: The requested `ActionResult` is not in the cache.
2130 |   @Sendable func getActionResult(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2131 |     request: Build_Bazel_Remote_Execution_V2_GetActionResultRequest,
2132 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2154:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2152 |   /// * `RESOURCE_EXHAUSTED`: There is insufficient storage space to add the
2153 |   ///   entry to the cache.
2154 |   @Sendable func updateActionResult(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2155 |     request: Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest,
2156 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ActionCacheAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2706:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2704 |   ///
2705 |   /// There are no method-specific errors.
2706 |   @Sendable func findMissingBlobs(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2707 |     request: Build_Bazel_Remote_Execution_V2_FindMissingBlobsRequest,
2708 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2735:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2733 |   /// [Digest][build.bazel.remote.execution.v2.Digest] does not match the
2734 |   /// provided data.
2735 |   @Sendable func batchUpdateBlobs(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2736 |     request: Build_Bazel_Remote_Execution_V2_BatchUpdateBlobsRequest,
2737 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2760:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2758 |   /// Every error on individual read will be returned in the corresponding digest
2759 |   /// status.
2760 |   @Sendable func batchReadBlobs(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2761 |     request: Build_Bazel_Remote_Execution_V2_BatchReadBlobsRequest,
2762 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2788:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2786 |   ///
2787 |   /// * `NOT_FOUND`: The requested tree root is not present in the CAS.
2788 |   @Sendable func getTree(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2789 |     request: Build_Bazel_Remote_Execution_V2_GetTreeRequest,
2790 |     responseStream: GRPCAsyncResponseStreamWriter<Build_Bazel_Remote_Execution_V2_GetTreeResponse>,
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_ContentAddressableStorageAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift:2991:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2989 |   ///
2990 |   /// There are no method-specific errors.
2991 |   @Sendable func getCapabilities(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
2992 |     request: Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest,
2993 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Execution_V2_CapabilitiesAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:405:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 403 | extension Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat: CaseIterable {
 404 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 405 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_Command.OutputDirectoryFormat] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 406 |     .treeOnly,
 407 |     .directoryOnly,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:1668:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1666 | extension Build_Bazel_Remote_Execution_V2_ExecutionStage.Value: CaseIterable {
1667 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
1668 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_ExecutionStage.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1669 |     .unknown,
1670 |     .cacheCheck,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2440:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2438 | extension Build_Bazel_Remote_Execution_V2_DigestFunction.Value: CaseIterable {
2439 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
2440 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_DigestFunction.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2441 |     .unknown,
2442 |     .sha256,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2560:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2558 | extension Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value: CaseIterable {
2559 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
2560 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_SymlinkAbsolutePathStrategy.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2561 |     .unknown,
2562 |     .disallowed,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:2632:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2630 | extension Build_Bazel_Remote_Execution_V2_Compressor.Value: CaseIterable {
2631 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
2632 |   public static var allCases: [Build_Bazel_Remote_Execution_V2_Compressor.Value] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2633 |     .identity,
2634 |     .zstd,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:3522:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
3506 |   ]
3507 |
3508 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
3509 |     var _worker: String = String()
3510 |     var _queuedTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil
     :
3520 |     var _auxiliaryMetadata: [SwiftProtobuf.Google_Protobuf_Any] = []
3521 |
3522 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecutedActionMetadata._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3523 |
3524 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4154:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4145 |   ]
4146 |
4147 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4148 |     var _result: Build_Bazel_Remote_Execution_V2_ActionResult? = nil
4149 |     var _cachedResult: Bool = false
     :
4152 |     var _message: String = String()
4153 |
4154 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ExecuteResponse._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4155 |
4156 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:4447:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
4438 |   ]
4439 |
4440 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
4441 |     var _instanceName: String = String()
4442 |     var _actionDigest: Build_Bazel_Remote_Execution_V2_Digest? = nil
     :
4445 |     var _digestFunction: Build_Bazel_Remote_Execution_V2_DigestFunction.Value = .unknown
4446 |
4447 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_UpdateActionResultRequest._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
4448 |
4449 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift:5055:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
5046 |   ]
5047 |
5048 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
5049 |     var _cacheCapabilities: Build_Bazel_Remote_Execution_V2_CacheCapabilities? = nil
5050 |     var _executionCapabilities: Build_Bazel_Remote_Execution_V2_ExecutionCapabilities? = nil
     :
5053 |     var _highApiVersion: Build_Bazel_Semver_SemVer? = nil
5054 |
5055 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Build_Bazel_Remote_Execution_V2_ServerCapabilities._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5056 |
5057 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:322:99: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
320 | #endif // compiler(>=5.6)
321 |
322 | public protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceClientInterceptorFactoryProtocol: GRPCSendable {
    |                                                                                                   |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
    |                                                                                                   `- note: use 'Swift.Sendable' instead
323 |
324 |   /// - Returns: Interceptors to use when invoking 'createLogStream'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift:526:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
524 |   /// Callers of CreateLogStream are expected to NOT publish the
525 |   /// `write_resource_name`.
526 |   @Sendable func createLogStream(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
527 |     request: Build_Bazel_Remote_Logstream_V1_CreateLogStreamRequest,
528 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Logstream_V1_LogStreamServiceAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:105:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 103 | extension Google_Api_ClientLibraryOrganization: CaseIterable {
 104 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 105 |   public static var allCases: [Google_Api_ClientLibraryOrganization] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 106 |     .unspecified,
 107 |     .cloud,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:163:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 161 | extension Google_Api_ClientLibraryDestination: CaseIterable {
 162 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
 163 |   public static var allCases: [Google_Api_ClientLibraryDestination] = [
     |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
     |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
     |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 164 |     .unspecified,
 165 |     .github,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/client.pb.swift:1200:16: warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
1185 |   ]
1186 |
1187 |   fileprivate class _StorageClass {
     |                     `- note: class '_StorageClass' does not conform to the 'Sendable' protocol
1188 |     var _version: String = String()
1189 |     var _launchStage: Google_Api_LaunchStage = .unspecified
     :
1198 |     var _goSettings: Google_Api_GoSettings? = nil
1199 |
1200 |     static let defaultInstance = _StorageClass()
     |                |- warning: static property 'defaultInstance' is not concurrency-safe because non-'Sendable' type 'Google_Api_ClientLibrarySettings._StorageClass' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: add '@MainActor' to make static property 'defaultInstance' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1201 |
1202 |     private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/api/launch_stage.pb.swift:126:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
124 | extension Google_Api_LaunchStage: CaseIterable {
125 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
126 |   public static var allCases: [Google_Api_LaunchStage] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |     .unspecified,
128 |     .unimplemented,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:391:79: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
389 | #endif // compiler(>=5.6)
390 |
391 | public protocol Google_Bytestream_ByteStreamClientInterceptorFactoryProtocol: GRPCSendable {
    |                                                                               |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
    |                                                                               `- note: use 'Swift.Sendable' instead
392 |
393 |   /// - Returns: Interceptors to use when invoking 'read'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:589:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
587 |   /// of bytes. The bytes are returned in a sequence of responses, and the
588 |   /// responses are delivered as the results of a server-side streaming RPC.
589 |   @Sendable func read(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
590 |     request: Google_Bytestream_ReadRequest,
591 |     responseStream: GRPCAsyncResponseStreamWriter<Google_Bytestream_ReadResponse>,
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:617:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
615 |   /// service was able to commit and whether the service views the resource as
616 |   /// `complete` or not.
617 |   @Sendable func write(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
618 |     requestStream: GRPCAsyncRequestStream<Google_Bytestream_WriteRequest>,
619 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/bytestream/bytestream.grpc.swift:636:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
634 |   /// resource name, the sequence of returned `committed_size` values will be
635 |   /// non-decreasing.
636 |   @Sendable func queryWriteStatus(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
637 |     request: Google_Bytestream_QueryWriteStatusRequest,
638 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Bytestream_ByteStreamAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Bytestream_ByteStreamAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:443:80: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
441 | #endif // compiler(>=5.6)
442 |
443 | public protocol Google_Longrunning_OperationsClientInterceptorFactoryProtocol: GRPCSendable {
    |                                                                                |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
    |                                                                                `- note: use 'Swift.Sendable' instead
444 |
445 |   /// - Returns: Interceptors to use when invoking 'listOperations'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:644:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
642 |   /// Lists operations that match the specified filter in the request. If the
643 |   /// server doesn't support this method, it returns `UNIMPLEMENTED`.
644 |   @Sendable func listOperations(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
645 |     request: Google_Longrunning_ListOperationsRequest,
646 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:652:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
650 |   /// method to poll the operation result at intervals as recommended by the API
651 |   /// service.
652 |   @Sendable func getOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
653 |     request: Google_Longrunning_GetOperationRequest,
654 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:661:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
659 |   /// operation. If the server doesn't support this method, it returns
660 |   /// `google.rpc.Code.UNIMPLEMENTED`.
661 |   @Sendable func deleteOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
662 |     request: Google_Longrunning_DeleteOperationRequest,
663 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:677:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
675 |   /// [google.rpc.Status.code][google.rpc.Status.code] of `1`, corresponding to
676 |   /// `Code.CANCELLED`.
677 |   @Sendable func cancelOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
678 |     request: Google_Longrunning_CancelOperationRequest,
679 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/longrunning/operations.grpc.swift:691:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
689 |   /// state before the specified timeout (including immediately), meaning even an
690 |   /// immediate response is no guarantee that the operation is done.
691 |   @Sendable func waitOperation(
    |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
692 |     request: Google_Longrunning_WaitOperationRequest,
693 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Google_Longrunning_OperationsAsyncProvider {
2 | Self : BazelRemoteAPI.Google_Longrunning_OperationsAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/google/rpc/code.pb.swift:258:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
256 | extension Google_Rpc_Code: CaseIterable {
257 |   // The compiler won't synthesize support with the UNRECOGNIZED case.
258 |   public static var allCases: [Google_Rpc_Code] = [
    |                     |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
259 |     .ok,
260 |     .cancelled,
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:11:39: warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
 9 | // Type aliases to drop the autogenerated prefix which is not really required since we're keeping the generated code in its own target.
10 |
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
   |                                       |- warning: 'Build_Bazel_Remote_Execution_V2_CapabilitiesClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient'
   |                                       `- note: use 'Build_Bazel_Remote_Execution_V2_CapabilitiesNIOClient' instead
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Typealiases.swift:13:52: warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
11 | public typealias CapabilitiesClient = Build_Bazel_Remote_Execution_V2_CapabilitiesClient
12 | public typealias GetCapabilitiesRequest = Build_Bazel_Remote_Execution_V2_GetCapabilitiesRequest
13 | public typealias ContentAddressableStorageClient = Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient
   |                                                    |- warning: 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageClient' is deprecated: renamed to 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient'
   |                                                    `- note: use 'Build_Bazel_Remote_Execution_V2_ContentAddressableStorageNIOClient' instead
14 | public typealias ServerCapabilities = Build_Bazel_Remote_Execution_V2_ServerCapabilities
15 |
[1459/1463] Compiling BazelRemoteAPI remote_asset.grpc.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:317:84: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 315 | #endif // compiler(>=5.6)
 316 |
 317 | public protocol Build_Bazel_Remote_Asset_V1_FetchClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                    |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                    `- note: use 'Swift.Sendable' instead
 318 |
 319 |   /// - Returns: Interceptors to use when invoking 'fetchBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:614:83: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 612 | #endif // compiler(>=5.6)
 613 |
 614 | public protocol Build_Bazel_Remote_Asset_V1_PushClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                   |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                   `- note: use 'Swift.Sendable' instead
 615 |
 616 |   /// - Returns: Interceptors to use when invoking 'pushBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:833:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 831 |   /// `qualifiers.name` and a `description` of `"{qualifier}" not supported`
 832 |   /// indicating the name of the unsupported qualifier.
 833 |   @Sendable func fetchBlob(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 834 |     request: Build_Bazel_Remote_Asset_V1_FetchBlobRequest,
 835 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:838:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 836 |   ) async throws -> Build_Bazel_Remote_Asset_V1_FetchBlobResponse
 837 |
 838 |   @Sendable func fetchDirectory(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 839 |     request: Build_Bazel_Remote_Asset_V1_FetchDirectoryRequest,
 840 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1061:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1059 |   /// * `INTERNAL`: An internal error occurred while performing the operation.
1060 |   ///   The client should retry.
1061 |   @Sendable func pushBlob(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1062 |     request: Build_Bazel_Remote_Asset_V1_PushBlobRequest,
1063 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1066:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1064 |   ) async throws -> Build_Bazel_Remote_Asset_V1_PushBlobResponse
1065 |
1066 |   @Sendable func pushDirectory(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1067 |     request: Build_Bazel_Remote_Asset_V1_PushDirectoryRequest,
1068 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1460/1463] Compiling BazelRemoteAPI remote_asset.pb.swift
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:317:84: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 315 | #endif // compiler(>=5.6)
 316 |
 317 | public protocol Build_Bazel_Remote_Asset_V1_FetchClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                    |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                    `- note: use 'Swift.Sendable' instead
 318 |
 319 |   /// - Returns: Interceptors to use when invoking 'fetchBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:614:83: warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
 612 | #endif // compiler(>=5.6)
 613 |
 614 | public protocol Build_Bazel_Remote_Asset_V1_PushClientInterceptorFactoryProtocol: GRPCSendable {
     |                                                                                   |- warning: 'GRPCSendable' is deprecated: renamed to 'Swift.Sendable'
     |                                                                                   `- note: use 'Swift.Sendable' instead
 615 |
 616 |   /// - Returns: Interceptors to use when invoking 'pushBlob'.
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:833:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 831 |   /// `qualifiers.name` and a `description` of `"{qualifier}" not supported`
 832 |   /// indicating the name of the unsupported qualifier.
 833 |   @Sendable func fetchBlob(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 834 |     request: Build_Bazel_Remote_Asset_V1_FetchBlobRequest,
 835 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:838:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 836 |   ) async throws -> Build_Bazel_Remote_Asset_V1_FetchBlobResponse
 837 |
 838 |   @Sendable func fetchDirectory(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
 839 |     request: Build_Bazel_Remote_Asset_V1_FetchDirectoryRequest,
 840 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_FetchAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_FetchAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1061:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1059 |   /// * `INTERNAL`: An internal error occurred while performing the operation.
1060 |   ///   The client should retry.
1061 |   @Sendable func pushBlob(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1062 |     request: Build_Bazel_Remote_Asset_V1_PushBlobRequest,
1063 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
/Users/admin/builder/spi-builder-workspace/Sources/BazelRemoteAPI/Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift:1066:3: warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1064 |   ) async throws -> Build_Bazel_Remote_Asset_V1_PushBlobResponse
1065 |
1066 |   @Sendable func pushDirectory(
     |   `- warning: instance method of non-Sendable type 'Self' cannot be marked as '@Sendable'; this is an error in the Swift 6 language mode
1067 |     request: Build_Bazel_Remote_Asset_V1_PushDirectoryRequest,
1068 |     context: GRPCAsyncServerCallContext
BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider.Self:2:1: note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
1 | protocol Build_Bazel_Remote_Asset_V1_PushAsyncProvider {
2 | Self : BazelRemoteAPI.Build_Bazel_Remote_Asset_V1_PushAsyncProvider}
  | `- note: consider making generic parameter 'Self' conform to the 'Sendable' protocol
3 |
[1461/1466] Compiling LLBBazelBackend Digest.swift
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/Digest.swift:46:24: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
44 |     func asBazelDigest() throws -> Digest {
45 |         return try bytes.dropFirst().withUnsafeBytes {
46 |             try Digest.init(serializedData: Data(bytesNoCopy: UnsafeMutableRawPointer(mutating: $0.baseAddress!), count: $0.count, deallocator: .none)) }
   |                        |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)'
   |                        `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
47 |     }
48 | }
[1462/1466] Compiling LLBBazelBackend BazelCASDatabase.swift
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:28:35: warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
 26 |     private let connection: ClientConnection
 27 |     private let headers: [GRPCHeader]
 28 |     private let bytestreamClient: Google_Bytestream_ByteStreamClient
    |                                   |- warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
    |                                   `- note: use 'Google_Bytestream_ByteStreamNIOClient' instead
 29 |     private let bytestreamUUID = UUID()
 30 |     private let casClient: ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:24:16: warning: stored property 'group' of 'Sendable'-conforming class 'LLBBazelCASDatabase' is mutable; this is an error in the Swift 6 language mode
 22 | public final class LLBBazelCASDatabase {
 23 |     /// Threads capable of running futures.
 24 |     public var group: LLBFuturesDispatchGroup
    |                `- warning: stored property 'group' of 'Sendable'-conforming class 'LLBBazelCASDatabase' is mutable; this is an error in the Swift 6 language mode
 25 |
 26 |     private let connection: ClientConnection
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:73:33: warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
 71 |         )
 72 |         self.connection = ClientConnection(configuration: configuration)
 73 |         self.bytestreamClient = Google_Bytestream_ByteStreamClient(channel: connection)
    |                                 |- warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
    |                                 `- note: use 'Google_Bytestream_ByteStreamNIOClient' instead
 74 |         self.bytestreamClient.defaultCallOptions.customMetadata.add(contentsOf: headers)
 75 |         self.casClient = ContentAddressableStorageClient(channel: connection)
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:116:29: warning: type 'LLBCASFeatures' does not conform to the 'Sendable' protocol
114 | extension LLBBazelCASDatabase: LLBCASDatabase {
115 |     public func supportedFeatures() -> LLBFuture<LLBCASFeatures> {
116 |         return group.next().makeSucceededFuture(LLBCASFeatures(preservesIDs: false))
    |                             `- warning: type 'LLBCASFeatures' does not conform to the 'Sendable' protocol
117 |     }
118 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-async/Sources/TSFCAS/Database.swift:30:15: note: struct 'LLBCASFeatures' does not conform to the 'Sendable' protocol
 28 |
 29 | /// Features supported by a CAS Database
 30 | public struct LLBCASFeatures: Codable {
    |               `- note: struct 'LLBCASFeatures' does not conform to the 'Sendable' protocol
 31 |
 32 |     /// Whether a database is "ID preserving"
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:16:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFCAS'
 14 | import SwiftProtobuf
 15 | import TSCBasic
 16 | import TSFCAS
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSFCAS'
 17 | import TSCUtility
 18 |
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:164:47: warning: reference to captured var 'buffer' in concurrently-executing code
162 |                 }
163 |
164 |                 return try LLBCASObject(from: buffer)
    |                                               `- warning: reference to captured var 'buffer' in concurrently-executing code
165 |             }
166 |         } catch {
[1463/1466] Emitting module LLBBazelBackend
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:28:35: warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
 26 |     private let connection: ClientConnection
 27 |     private let headers: [GRPCHeader]
 28 |     private let bytestreamClient: Google_Bytestream_ByteStreamClient
    |                                   |- warning: 'Google_Bytestream_ByteStreamClient' is deprecated: renamed to 'Google_Bytestream_ByteStreamNIOClient'
    |                                   `- note: use 'Google_Bytestream_ByteStreamNIOClient' instead
 29 |     private let bytestreamUUID = UUID()
 30 |     private let casClient: ContentAddressableStorageClient
/Users/admin/builder/spi-builder-workspace/Sources/LLBBazelBackend/CAS/BazelCASDatabase.swift:24:16: warning: stored property 'group' of 'Sendable'-conforming class 'LLBBazelCASDatabase' is mutable; this is an error in the Swift 6 language mode
 22 | public final class LLBBazelCASDatabase {
 23 |     /// Threads capable of running futures.
 24 |     public var group: LLBFuturesDispatchGroup
    |                `- warning: stored property 'group' of 'Sendable'-conforming class 'LLBBazelCASDatabase' is mutable; this is an error in the Swift 6 language mode
 25 |
 26 |     private let connection: ClientConnection
[1464/1469] Compiling LLBCASTool Options.swift
[1465/1469] Emitting module LLBCASTool
[1466/1469] Compiling LLBCASTool CASTool.swift
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:56:38: warning: 'openFile(path:eventLoop:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
 54 |     /// Put the given file into the CAS database.
 55 |     public func casPut(file: AbsolutePath, _ ctx: Context) -> LLBFuture<LLBDataID> {
 56 |         let handleAndRegion = fileIO.openFile(
    |                                      `- warning: 'openFile(path:eventLoop:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
 57 |             path: file.pathString, eventLoop: group.next()
 58 |         )
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:62:20: warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
 21 |
 22 | /// Frontend to the remote execution tool.
 23 | public final class LLBCASTool {
    |                    `- note: class 'LLBCASTool' does not conform to the 'Sendable' protocol
 24 |
 25 |     /// The tool options.
    :
 60 |         let buffer: LLBFuture<LLBByteBuffer> = handleAndRegion.flatMap { (handle, region) in
 61 |             let allocator = ByteBufferAllocator()
 62 |             return self.fileIO.read(
    |                    `- warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
 63 |                 fileRegion: region,
 64 |                 allocator: allocator,
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:73:13: warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
 21 |
 22 | /// Frontend to the remote execution tool.
 23 | public final class LLBCASTool {
    |                    `- note: class 'LLBCASTool' does not conform to the 'Sendable' protocol
 24 |
 25 |     /// The tool options.
    :
 71 |
 72 |         return buffer.flatMap { buf in
 73 |             self.db.put(refs: [], data: buf, ctx)
    |             `- warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
 74 |         }
 75 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:92:29: warning: 'openFile(path:mode:flags:eventLoop:)' is deprecated: Avoid using NonBlockingFileIO. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
 90 |         }
 91 |
 92 |         let handle = fileIO.openFile(
    |                             `- warning: 'openFile(path:mode:flags:eventLoop:)' is deprecated: Avoid using NonBlockingFileIO. The type is difficult to hold correctly, use NIOFileSystem as a replacement API.
 93 |             path: outputFile.pathString,
 94 |             mode: .write,
/Users/admin/builder/spi-builder-workspace/Sources/LLBCASTool/CASTool.swift:100:13: warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
 21 |
 22 | /// Frontend to the remote execution tool.
 23 | public final class LLBCASTool {
    |                    `- note: class 'LLBCASTool' does not conform to the 'Sendable' protocol
 24 |
 25 |     /// The tool options.
    :
 98 |
 99 |         return handle.and(data).flatMap { (handle, data) in
100 |             self.fileIO.write(
    |             `- warning: capture of 'self' with non-sendable type 'LLBCASTool' in a '@Sendable' closure
101 |                 fileHandle: handle,
102 |                 buffer: data,
[1467/1475] Compiling llcastool misc.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/misc.swift:14:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | import TSCBasic
13 |
14 | extension URL: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 |     public init?(argument: String) {
16 |         if let parsed = URL(string: argument) {
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/misc.swift:24:1: warning: extension declares a conformance of imported type 'AbsolutePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TSCBasic' introduce this conformance in the future
22 | }
23 |
24 | extension AbsolutePath: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'AbsolutePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TSCBasic' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
25 |     public init?(argument: String) {
26 |         if let path = try? AbsolutePath(validating: argument) {
[1468/1475] Compiling llcastool main.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/main.swift:15:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | struct llcastoolCommand: ParsableCommand {
15 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |         commandName: "llcastool",
17 |         abstract: "llcastool — cas manipulation tools",
[1469/1475] Compiling llcastool CommonOptions.swift
[1470/1475] Compiling llcastool Capabilities.swift
[1471/1475] Emitting module llcastool
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/main.swift:15:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | struct llcastoolCommand: ParsableCommand {
15 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |         commandName: "llcastool",
17 |         abstract: "llcastool — cas manipulation tools",
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/misc.swift:14:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | import TSCBasic
13 |
14 | extension URL: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 |     public init?(argument: String) {
16 |         if let parsed = URL(string: argument) {
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/misc.swift:24:1: warning: extension declares a conformance of imported type 'AbsolutePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TSCBasic' introduce this conformance in the future
22 | }
23 |
24 | extension AbsolutePath: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'AbsolutePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'TSCBasic' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
25 |     public init?(argument: String) {
26 |         if let path = try? AbsolutePath(validating: argument) {
[1472/1475] Compiling llcastool CASCommands.swift
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/CASCommands.swift:33:22: warning: '<<<' is deprecated: use send(_:) function on WritableByteStream instead
31 |     func run() throws {
32 |         let fileSize = try localFileSystem.getFileInfo(path).size
33 |         stderrStream <<< "importing \(path.basename), \(prettyFileSize(fileSize))\n"
   |                      `- warning: '<<<' is deprecated: use send(_:) function on WritableByteStream instead
34 |         stderrStream.flush()
35 |
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/CASCommands.swift:33:9: warning: reference to var 'stderrStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
31 |     func run() throws {
32 |         let fileSize = try localFileSystem.getFileInfo(path).size
33 |         stderrStream <<< "importing \(path.basename), \(prettyFileSize(fileSize))\n"
   |         `- warning: reference to var 'stderrStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
34 |         stderrStream.flush()
35 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCBasic/WritableByteStream.swift:828:12: note: var declared here
826 |
827 | /// Public stderr stream instance.
828 | public var stderrStream: ThreadSafeOutputByteStream = try! ThreadSafeOutputByteStream(LocalFileOutputByteStream(
    |            `- note: var declared here
829 |     filePointer: TSCLibc.stderr,
830 |     closeOnDeinit: false))
/Users/admin/builder/spi-builder-workspace/Sources/Tools/llcastool/CASCommands.swift:34:9: warning: reference to var 'stderrStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
32 |         let fileSize = try localFileSystem.getFileInfo(path).size
33 |         stderrStream <<< "importing \(path.basename), \(prettyFileSize(fileSize))\n"
34 |         stderrStream.flush()
   |         `- warning: reference to var 'stderrStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
35 |
36 |         let group = LLBMakeDefaultDispatchGroup()
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCBasic/WritableByteStream.swift:828:12: note: var declared here
826 |
827 | /// Public stderr stream instance.
828 | public var stderrStream: ThreadSafeOutputByteStream = try! ThreadSafeOutputByteStream(LocalFileOutputByteStream(
    |            `- note: var declared here
829 |     filePointer: TSCLibc.stderr,
830 |     closeOnDeinit: false))
[1472/1475] Write Objects.LinkFileList
[1473/1475] Linking llcastool
[1474/1475] Applying llcastool
Build complete! (50.06s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.4",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    },
    {
      "identity" : "swift-tools-support-async",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.10.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-tools-support-async.git"
    },
    {
      "identity" : "swift-tools-support-core",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.7",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-tools-support-core.git"
    },
    {
      "identity" : "swift-protobuf",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.17.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-protobuf.git"
    },
    {
      "identity" : "grpc-swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/grpc/grpc-swift.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "swift-distributed-tracing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-distributed-tracing"
    }
  ],
  "manifest_display_name" : "llbuild2",
  "name" : "llbuild2",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "llbuild2",
      "targets" : [
        "llbuild2"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "llbuild2fx",
      "targets" : [
        "llbuild2fx"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "llcastool",
      "targets" : [
        "llcastool"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "llcastool",
      "module_type" : "SwiftTarget",
      "name" : "llcastool",
      "path" : "Sources/Tools/llcastool",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "llcastool"
      ],
      "sources" : [
        "CASCommands.swift",
        "Capabilities.swift",
        "CommonOptions.swift",
        "main.swift",
        "misc.swift"
      ],
      "target_dependencies" : [
        "LLBCASTool"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "llbuild2fxTests",
      "module_type" : "SwiftTarget",
      "name" : "llbuild2fxTests",
      "path" : "Tests/llbuild2fxTests",
      "sources" : [
        "CommandLineArgsCoderTests.swift",
        "DeadlineTests.swift",
        "EngineTests.swift",
        "ExpressionTests.swift",
        "FunctionCacheTests.swift",
        "KeyDependencyGraphTests.swift",
        "KeyTests.swift",
        "PredicateTests.swift",
        "RequirementTests.swift",
        "ResourcesTests.swift"
      ],
      "target_dependencies" : [
        "llbuild2fx"
      ],
      "type" : "test"
    },
    {
      "c99name" : "llbuild2fx",
      "module_type" : "SwiftTarget",
      "name" : "llbuild2fx",
      "path" : "Sources/llbuild2fx",
      "product_dependencies" : [
        "SwiftProtobuf",
        "SwiftToolsSupportCAS",
        "Logging",
        "Tracing",
        "Instrumentation"
      ],
      "product_memberships" : [
        "llbuild2",
        "llbuild2fx"
      ],
      "sources" : [
        "Action.swift",
        "ActionCache/FileBackedFunctionCache.swift",
        "ActionCache/InMemoryFunctionCache.swift",
        "Coding.swift",
        "CommandLineArgsCoder.swift",
        "Deadline.swift",
        "Diagnostics.swift",
        "Engine.swift",
        "Environment.swift",
        "Errors.swift",
        "Executor.swift",
        "FunctionCache.swift",
        "FunctionInterface.swift",
        "Generated/EngineProtocol/any_serializable.pb.swift",
        "Key.swift",
        "KeyConfiguration.swift",
        "KeyDependencyGraph.swift",
        "LocalExecutor.swift",
        "NullExecutor.swift",
        "Predicate/Expression.swift",
        "Predicate/Predicate.swift",
        "Resources.swift",
        "Reëxport.swift",
        "Ruleset.swift",
        "SortedSet.swift",
        "SpawnProcess.swift",
        "Stats.swift",
        "Support/AnySerializable.swift",
        "Support/CommonCodables.swift",
        "Support/Logging.swift",
        "Support/Protobuf+Extensions.swift",
        "TreeMaterialization.swift",
        "Value.swift",
        "Versioning.swift",
        "WrappedDataID.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "llbuild2",
      "module_type" : "SwiftTarget",
      "name" : "llbuild2",
      "path" : "Sources/llbuild2",
      "product_memberships" : [
        "llbuild2"
      ],
      "sources" : [
        "Reexport.swift"
      ],
      "target_dependencies" : [
        "llbuild2fx"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LLBCASTool",
      "module_type" : "SwiftTarget",
      "name" : "LLBCASTool",
      "path" : "Sources/LLBCASTool",
      "product_dependencies" : [
        "GRPC",
        "SwiftToolsSupport-auto"
      ],
      "product_memberships" : [
        "llcastool"
      ],
      "sources" : [
        "CASTool.swift",
        "Options.swift"
      ],
      "target_dependencies" : [
        "BazelRemoteAPI",
        "LLBBazelBackend"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LLBBazelBackend",
      "module_type" : "SwiftTarget",
      "name" : "LLBBazelBackend",
      "path" : "Sources/LLBBazelBackend",
      "product_dependencies" : [
        "Crypto",
        "GRPC",
        "SwiftToolsSupportCAS"
      ],
      "product_memberships" : [
        "llcastool"
      ],
      "sources" : [
        "CAS/BazelCASDatabase.swift",
        "CAS/Digest.swift"
      ],
      "target_dependencies" : [
        "BazelRemoteAPI"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BazelRemoteAPI",
      "module_type" : "SwiftTarget",
      "name" : "BazelRemoteAPI",
      "path" : "Sources/BazelRemoteAPI",
      "product_dependencies" : [
        "GRPC",
        "SwiftProtobuf",
        "SwiftProtobufPluginLibrary"
      ],
      "product_memberships" : [
        "llcastool"
      ],
      "sources" : [
        "Generated/build/bazel/remote/asset/v1/remote_asset.grpc.swift",
        "Generated/build/bazel/remote/asset/v1/remote_asset.pb.swift",
        "Generated/build/bazel/remote/execution/v2/remote_execution.grpc.swift",
        "Generated/build/bazel/remote/execution/v2/remote_execution.pb.swift",
        "Generated/build/bazel/remote/logstream/v1/remote_logstream.grpc.swift",
        "Generated/build/bazel/remote/logstream/v1/remote_logstream.pb.swift",
        "Generated/build/bazel/semver/semver.pb.swift",
        "Generated/google/api/annotations.pb.swift",
        "Generated/google/api/client.pb.swift",
        "Generated/google/api/http.pb.swift",
        "Generated/google/api/launch_stage.pb.swift",
        "Generated/google/bytestream/bytestream.grpc.swift",
        "Generated/google/bytestream/bytestream.pb.swift",
        "Generated/google/longrunning/operations.grpc.swift",
        "Generated/google/longrunning/operations.pb.swift",
        "Generated/google/rpc/code.pb.swift",
        "Generated/google/rpc/error_details.pb.swift",
        "Generated/google/rpc/http.pb.2.swift",
        "Generated/google/rpc/status.pb.swift",
        "Typealiases.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.