The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of grpc-swift, reference release/1.x (664cc4), with Swift 6.2 (beta) for macOS (SPM) on 24 Jun 2025 08:40:52 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

420 |     switch self.interceptorStateMachine.interceptedRequestMetadata() {
421 |     case .forward:
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/AsyncAwaitSupport/GRPCAsyncServerHandler.swift:609:11: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
607 |       self.eventLoop.execute {
608 |         for message in messages {
609 |           self._interceptResponseMessage(message.0, compression: message.1)
    |           `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
610 |         }
611 |       }
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/AsyncAwaitSupport/GRPCAsyncServerHandler.swift:609:11: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
607 |       self.eventLoop.execute {
608 |         for message in messages {
609 |           self._interceptResponseMessage(message.0, compression: message.1)
    |           `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
610 |         }
611 |       }
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/AsyncAwaitSupport/GRPCAsyncServerHandler.swift:601:17: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
599 |   @Sendable
600 |   @inlinable
601 |   internal func interceptResponseMessages(_ messages: Deque<(Response, Compression)>) {
    |                 `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
602 |     if self.eventLoop.inEventLoop {
603 |       for message in messages {
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/AsyncAwaitSupport/GRPCAsyncServerHandler.swift:601:17: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
599 |   @Sendable
600 |   @inlinable
601 |   internal func interceptResponseMessages(_ messages: Deque<(Response, Compression)>) {
    |                 `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
602 |     if self.eventLoop.inEventLoop {
603 |       for message in messages {
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/AsyncAwaitSupport/GRPCAsyncServerHandler.swift:667:9: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
665 |     } else {
666 |       self.eventLoop.execute {
667 |         self._interceptTermination(status)
    |         `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
668 |       }
669 |     }
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/AsyncAwaitSupport/GRPCAsyncServerHandler.swift:667:9: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
665 |     } else {
666 |       self.eventLoop.execute {
667 |         self._interceptTermination(status)
    |         `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
668 |       }
669 |     }
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/AsyncAwaitSupport/GRPCAsyncServerHandler.swift:662:17: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
660 |   @Sendable
661 |   @inlinable
662 |   internal func interceptTermination(_ status: Error?) {
    |                 `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
663 |     if self.eventLoop.inEventLoop {
664 |       self._interceptTermination(status)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/AsyncAwaitSupport/GRPCAsyncServerHandler.swift:662:17: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
660 |   @Sendable
661 |   @inlinable
662 |   internal func interceptTermination(_ status: Error?) {
    |                 `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
663 |     if self.eventLoop.inEventLoop {
664 |       self._interceptTermination(status)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/AsyncAwaitSupport/GRPCClient+AsyncAwaitSupport.swift:419:36: warning: capture of non-sendable type 'RequestStream.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
417 |           // `AsyncSequence`s are encouraged to co-operatively check for cancellation, and we will
418 |           // cancel the call `onCancel` anyway, so there's no need to check here too.
419 |           for try await request in requests {
    |                                    `- warning: capture of non-sendable type 'RequestStream.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
420 |             try await call.requestStream.send(request)
421 |           }
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/BidirectionalStreamingServerHandler.swift:142:9: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
140 |       context.statusPromise.fail(GRPCStatus(code: .unavailable, message: nil))
141 |       self.context.eventLoop.execute {
142 |         self.interceptors = nil
    |         `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
143 |       }
144 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/BidirectionalStreamingServerHandler.swift:142:9: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
140 |       context.statusPromise.fail(GRPCStatus(code: .unavailable, message: nil))
141 |       self.context.eventLoop.execute {
142 |         self.interceptors = nil
    |         `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
143 |       }
144 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/BidirectionalStreamingServerHandler.swift:132:15: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
130 |
131 |   @inlinable
132 |   public func finish() {
    |               `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
133 |     switch self.state {
134 |     case .idle:
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/BidirectionalStreamingServerHandler.swift:132:15: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
130 |
131 |   @inlinable
132 |   public func finish() {
    |               `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
133 |     switch self.state {
134 |     case .idle:
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/ClientStreamingServerHandler.swift:143:9: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
141 |       context.responsePromise.fail(GRPCStatus(code: .unavailable, message: nil))
142 |       self.context.eventLoop.execute {
143 |         self.interceptors = nil
    |         `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
144 |       }
145 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/ClientStreamingServerHandler.swift:143:9: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
141 |       context.responsePromise.fail(GRPCStatus(code: .unavailable, message: nil))
142 |       self.context.eventLoop.execute {
143 |         self.interceptors = nil
    |         `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
144 |       }
145 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/ClientStreamingServerHandler.swift:133:15: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
131 |
132 |   @inlinable
133 |   public func finish() {
    |               `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
134 |     switch self.state {
135 |     case .idle:
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/ClientStreamingServerHandler.swift:133:15: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
131 |
132 |   @inlinable
133 |   public func finish() {
    |               `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
134 |     switch self.state {
135 |     case .idle:
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/ServerStreamingServerHandler.swift:139:9: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
137 |       context.statusPromise.fail(GRPCStatus(code: .unavailable, message: nil))
138 |       self.context.eventLoop.execute {
139 |         self.interceptors = nil
    |         `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
140 |       }
141 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/ServerStreamingServerHandler.swift:139:9: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
137 |       context.statusPromise.fail(GRPCStatus(code: .unavailable, message: nil))
138 |       self.context.eventLoop.execute {
139 |         self.interceptors = nil
    |         `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
140 |       }
141 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/ServerStreamingServerHandler.swift:129:15: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
127 |
128 |   @inlinable
129 |   public func finish() {
    |               `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
130 |     switch self.state {
131 |     case .idle:
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/ServerStreamingServerHandler.swift:129:15: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
127 |
128 |   @inlinable
129 |   public func finish() {
    |               `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
130 |     switch self.state {
131 |     case .idle:
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/UnaryServerHandler.swift:136:9: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
134 |       context.responsePromise.fail(GRPCStatus(code: .unavailable, message: nil))
135 |       self.context.eventLoop.execute {
136 |         self.interceptors = nil
    |         `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
137 |       }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/UnaryServerHandler.swift:136:9: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
134 |       context.responsePromise.fail(GRPCStatus(code: .unavailable, message: nil))
135 |       self.context.eventLoop.execute {
136 |         self.interceptors = nil
    |         `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
137 |       }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/UnaryServerHandler.swift:126:15: warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
124 |
125 |   @inlinable
126 |   public func finish() {
    |               `- warning: capture of non-sendable type 'Serializer.Type' in an isolated closure
127 |     switch self.state {
128 |     case .idle:
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/CallHandlers/UnaryServerHandler.swift:126:15: warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
124 |
125 |   @inlinable
126 |   public func finish() {
    |               `- warning: capture of non-sendable type 'Deserializer.Type' in an isolated closure
127 |     switch self.state {
128 |     case .idle:
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ServerCallContexts/StreamingResponseCallContext.swift:214:14: warning: capture of non-sendable type 'Messages.Type' in an isolated closure
212 |     } else {
213 |       self.eventLoop.execute {
214 |         self._sendResponses(messages, compression: compression, promise: promise)
    |              `- warning: capture of non-sendable type 'Messages.Type' in an isolated closure
215 |       }
216 |     }
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ServerCallContexts/StreamingResponseCallContext.swift:206:7: warning: capture of non-sendable type 'Messages.Type' in an isolated closure
204 |   @inlinable
205 |   override func sendResponses<Messages: Sequence>(
206 |     _ messages: Messages,
    |       `- warning: capture of non-sendable type 'Messages.Type' in an isolated closure
207 |     compression: Compression = .deferToCallDefault,
208 |     promise: EventLoopPromise<Void>?
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1247/1360] Compiling GRPC ServerErrorProcessor.swift
[1248/1360] Compiling GRPC Stopwatch.swift
[1249/1360] Compiling GRPC StreamEvent.swift
[1250/1360] Compiling GRPC TLSVerificationHandler.swift
[1251/1360] Compiling GRPC TLSVersion.swift
[1252/1360] Compiling GRPC TimeLimit.swift
[1253/1360] Compiling GRPC UserInfo.swift
[1254/1360] Compiling GRPC Version.swift
[1255/1360] Compiling GRPC WebCORSHandler.swift
[1256/1360] Compiling GRPC WriteCapturingHandler.swift
[1257/1360] Compiling GRPC _EmbeddedThroughput.swift
[1258/1360] Compiling GRPC _FakeResponseStream.swift
[1259/1360] Compiling GRPC _GRPCClientCodecHandler.swift
[1260/1360] Compiling GRPC _MessageContext.swift
[1261/1360] Compiling GRPC Error+NIOSSL.swift
[1262/1360] Compiling GRPC EventLoopFuture+RecoverFromUncleanShutdown.swift
[1263/1360] Compiling GRPC FakeChannel.swift
[1264/1360] Compiling GRPC ClientConnection+NIOSSL.swift
[1265/1360] Compiling GRPC ClientConnection+NWTLS.swift
[1266/1360] Compiling GRPC GRPCChannel.swift
[1267/1360] Compiling GRPC GRPCChannelBuilder.swift
[1268/1360] Compiling GRPC GRPCClient.swift
[1269/1360] Compiling GRPC GRPCClientChannelHandler.swift
[1270/1360] Compiling GRPC GRPCClientStateMachine.swift
[1271/1360] Compiling GRPC GRPCContentType.swift
[1272/1360] Compiling GRPC GRPCError.swift
[1273/1360] Compiling GRPC GRPCHeaderName.swift
[1274/1360] Compiling GRPC GRPCIdleHandler.swift
[1275/1360] Compiling GRPC UnaryCall.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1276/1360] Compiling GRPC ClientConnection.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1277/1360] Compiling GRPC ClientConnectionConfiguration+NIOSSL.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1278/1360] Compiling GRPC ClientErrorDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1279/1360] Compiling GRPC CoalescingLengthPrefixedMessageWriter.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1280/1360] Compiling GRPC CompressionAlgorithm.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1281/1360] Compiling GRPC DecompressionLimit.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1282/1360] Compiling GRPC MessageEncoding.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1283/1360] Compiling GRPC Zlib.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1284/1360] Compiling GRPC ConnectionBackoff.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1285/1360] Compiling GRPC ConnectionKeepalive.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1286/1360] Compiling GRPC ConnectionManager+Delegates.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1287/1360] Compiling GRPC ConnectionManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1288/1360] Compiling GRPC ConnectionManagerChannelProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:432:29: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 430 |       return getHTTP2Multiplexer0()
 431 |     } else {
 432 |       return self.eventLoop.flatSubmit {
     |                             `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 433 |         getHTTP2Multiplexer0()
 434 |       }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:459:36: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 457 |
 458 |     case let .ready(state):
 459 |       multiplexer = self.eventLoop.makeSucceededFuture(state.multiplexer)
     |                                    `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 460 |
 461 |     case let .transientFailure(state):
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:498:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 496 |         return state.candidateMuxPromise.futureResult
 497 |       case let .active(active):
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:500:31: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 498 |         return self.eventLoop.makeSucceededFuture(active.multiplexer)
 499 |       case let .ready(ready):
 500 |         return self.eventLoop.makeSucceededFuture(ready.multiplexer)
     |                               `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 501 |       case let .transientFailure(state):
 502 |         return self.eventLoop.makeFailedFuture(state.reason)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:762:38: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 760 |       self.state = .active(connected)
 761 |       // Optimistic connections are happy this this level of setup.
 762 |       connecting.candidateMuxPromise.succeed(multiplexer)
     |                                      `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 763 |
 764 |     // Application called shutdown before the channel become active; we should close it.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/ConnectionManager.swift:915:40: warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 913 |     case let .active(connected):
 914 |       self.state = .ready(ReadyState(from: connected))
 915 |       connected.readyChannelMuxPromise.succeed(connected.multiplexer)
     |                                        `- warning: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' is unavailable
 916 |
 917 |     case .shutdown:
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio-http2/Sources/NIOHTTP2/HTTP2StreamMultiplexer.swift:426:1: note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
424 |
425 | @available(*, unavailable)
426 | extension HTTP2StreamMultiplexer: Sendable {}
    | `- note: conformance of 'HTTP2StreamMultiplexer' to 'Sendable' has been explicitly marked unavailable here
427 |
[1289/1360] Compiling GRPC ClientInterceptorContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1290/1360] Compiling GRPC ClientInterceptorPipeline.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1291/1360] Compiling GRPC ClientInterceptorProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1292/1360] Compiling GRPC ClientInterceptors.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1293/1360] Compiling GRPC ClientTransport.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1294/1360] Compiling GRPC ClientTransportFactory.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1295/1360] Compiling GRPC MessageParts.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1296/1360] Compiling GRPC ServerInterceptorContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1297/1360] Compiling GRPC ServerInterceptorPipeline.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1298/1360] Compiling GRPC ServerInterceptors.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1299/1360] Compiling GRPC InterceptorContextList.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1300/1360] Compiling GRPC LengthPrefixedMessageReader.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1301/1360] Compiling GRPC Logger.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1302/1360] Compiling GRPC LoggingServerErrorDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:952:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 950 |     case let .metadata(headers):
 951 |       let head = self.makeRequestHead(with: headers)
 952 |       channel.write(self.wrapOutboundOut(.head(head)), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 953 |       // Messages are buffered by this class and in the async writer for async calls. Initially the
 954 |       // async writer is not allowed to emit messages; the call to 'onStart()' signals that messages
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:963:17: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 961 |         let bytes = try self.serializer.serialize(request, allocator: channel.allocator)
 962 |         let message = _MessageContext<ByteBuffer>(bytes, compressed: metadata.compress)
 963 |         channel.write(self.wrapOutboundOut(.message(message)), promise: promise)
     |                 `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 964 |       } catch {
 965 |         self.handleError(error)
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/Interceptor/ClientTransport.swift:969:15: warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 967 |
 968 |     case .end:
 969 |       channel.write(self.wrapOutboundOut(.end), promise: promise)
     |               `- warning: 'write(_:promise:)' is deprecated: NIOAny is not Sendable. Avoid wrapping the value in NIOAny to silence this warning. [#DeprecatedDeclaration]
 970 |     }
 971 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1303/1360] Compiling GRPC ConnectionManagerID.swift
[1304/1360] Compiling GRPC ConnectionPool+PerConnectionState.swift
[1305/1360] Compiling GRPC ConnectionPool+Waiter.swift
[1306/1360] Compiling GRPC ConnectionPool.swift
[1307/1360] Compiling GRPC ConnectionPoolIDs.swift
[1308/1360] Compiling GRPC GRPCChannelPool.swift
[1309/1360] Compiling GRPC PoolManager.swift
[1310/1360] Compiling GRPC PoolManagerStateMachine+PerPoolState.swift
[1311/1360] Compiling GRPC PoolManagerStateMachine.swift
[1312/1360] Compiling GRPC PooledChannel.swift
[1313/1360] Compiling GRPC StreamLender.swift
[1314/1360] Compiling GRPC ConnectivityState.swift
[1315/1360] Compiling GRPC DebugOnly.swift
[1316/1360] Compiling GRPC DelegatingErrorHandler.swift
[1317/1360] Compiling GRPC GRPCIdleHandlerStateMachine.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1318/1360] Compiling GRPC GRPCKeepaliveHandlers.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1319/1360] Compiling GRPC GRPCPayload.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1320/1360] Compiling GRPC GRPCServerPipelineConfigurator.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1321/1360] Compiling GRPC GRPCServerRequestRoutingHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1322/1360] Compiling GRPC GRPCServiceDescription.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1323/1360] Compiling GRPC GRPCStatus.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1324/1360] Compiling GRPC GRPCStatusAndMetadata.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1325/1360] Compiling GRPC GRPCStatusMessageMarshaller.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1326/1360] Compiling GRPC GRPCTLSConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1327/1360] Compiling GRPC GRPCTimeout.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1328/1360] Compiling GRPC GRPCWebToHTTP2ServerCodec.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1329/1360] Compiling GRPC HTTP2ToRawGRPCServerCodec.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1330/1360] Compiling GRPC HTTP2ToRawGRPCStateMachine.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPC/GRPCServerPipelineConfigurator.swift:153:24: warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
151 |     switch result {
152 |     case .success:
153 |       context.pipeline.removeHandler(context: context, promise: nil)
    |                        `- warning: 'removeHandler(context:promise:)' is deprecated: Use .syncOperations.removeHandler(context:) instead, this method is not Sendable-safe. [#DeprecatedDeclaration]
154 |     case let .failure(error):
155 |       self.errorCaught(context: context, error: error)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1331/1393] Compiling GRPCInteroperabilityTestModels test.pb.swift
[1332/1393] Compiling EchoModel echo.pb.swift
[1333/1393] Compiling HelloWorldModel helloworld.pb.swift
[1334/1393] Compiling GRPCPerformanceTests MinimalEchoProvider.swift
[1335/1394] Compiling GRPCPerformanceTests echo.pb.swift
[1336/1394] Emitting module GRPCPerformanceTests
[1337/1394] Emitting module HelloWorldModel
[1338/1394] Compiling HelloWorldModel helloworld.grpc.swift
[1339/1394] Compiling GRPCPerformanceTests Benchmark.swift
[1340/1394] Compiling GRPCPerformanceTests BenchmarkUtils.swift
[1341/1394] Compiling GRPCPerformanceTests EmbeddedClientThroughput.swift
[1342/1394] Compiling GRPCPerformanceTests EmbeddedServer.swift
[1343/1394] Compiling GRPCReflectionService ReflectionServiceV1Alpha.swift
[1344/1394] Compiling GRPCReflectionService ReflectionServiceV1.swift
[1345/1399] Compiling RouteGuideModel route_guide.grpc.swift
[1346/1399] Compiling RouteGuideModel route_guide.pb.swift
[1347/1399] Emitting module RouteGuideModel
[1348/1399] Emitting module GRPCReflectionService
[1349/1399] Compiling GRPCReflectionService ReflectionService.swift
[1350/1399] Compiling GRPCPerformanceTests UnaryThroughput.swift
[1351/1399] Compiling GRPCPerformanceTests PercentEncoding.swift
[1352/1399] Compiling GRPCPerformanceTests echo.grpc.swift
[1353/1399] Compiling GRPCPerformanceTests ServerProvidingBenchmark.swift
[1354/1399] Compiling GRPCPerformanceTests main.swift
[1355/1399] Emitting module EchoModel
[1356/1399] Compiling EchoModel echo.grpc.swift
[1357/1399] Compiling HelloWorldServer GreeterProvider.swift
[1357/1399] Write Objects.LinkFileList
[1359/1413] Compiling GRPCReflectionService reflection-v1alpha.grpc.swift
[1360/1413] Compiling GRPCReflectionService reflection-v1alpha.pb.swift
[1361/1413] Emitting module HelloWorldServer
[1362/1413] Compiling HelloWorldServer HelloWorldServer.swift
/Users/admin/builder/spi-builder-workspace/Examples/v1/HelloWorld/Server/HelloWorldServer.swift:31:18: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
29 |     let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
30 |     defer {
31 |       try! group.syncShutdownGracefully()
   |                  `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
32 |     }
33 |
[1362/1413] Write Objects.LinkFileList
[1364/1413] Compiling GRPCReflectionService reflection-v1.pb.swift
[1365/1413] Compiling GRPCReflectionService reflection-v1.grpc.swift
[1366/1413] Compiling HelloWorldClient HelloWorldClient.swift
/Users/admin/builder/spi-builder-workspace/Examples/v1/HelloWorld/Client/HelloWorldClient.swift:39:18: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
37 |     // Make sure the group is shutdown when we're done with it.
38 |     defer {
39 |       try! group.syncShutdownGracefully()
   |                  `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
40 |     }
41 |
/Users/admin/builder/spi-builder-workspace/Examples/v1/HelloWorld/Client/HelloWorldClient.swift:51:28: warning: instance method 'wait' is unavailable from asynchronous contexts; wait() can block indefinitely, prefer get()
49 |     // Close the connection when we're done with it.
50 |     defer {
51 |       try! channel.close().wait()
   |                            `- warning: instance method 'wait' is unavailable from asynchronous contexts; wait() can block indefinitely, prefer get()
52 |     }
53 |
[1367/1413] Emitting module HelloWorldClient
[1367/1413] Write Objects.LinkFileList
[1369/1413] Compiling EchoImplementation Interceptors.swift
[1370/1413] Compiling EchoImplementation EchoProvider.swift
[1371/1413] Emitting module EchoImplementation
[1372/1413] Compiling EchoImplementation HPACKHeaders+Prettify.swift
[1373/1413] Compiling EchoImplementation EchoAsyncProvider.swift
[1374/1413] Compiling RouteGuideServer RouteGuideServer.swift
/Users/admin/builder/spi-builder-workspace/Examples/v1/RouteGuide/Server/RouteGuideServer.swift:46:18: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
44 |     let group = MultiThreadedEventLoopGroup(numberOfThreads: System.coreCount)
45 |     defer {
46 |       try! group.syncShutdownGracefully()
   |                  `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
47 |     }
48 |
[1375/1413] Emitting module RouteGuideServer
[1376/1413] Compiling RouteGuideServer RouteGuideProvider.swift
[1377/1413] Compiling PacketCapture Empty.swift
[1378/1413] Emitting module PacketCapture
[1379/1413] Compiling PacketCapture PacketCapture.swift
/Users/admin/builder/spi-builder-workspace/Examples/v1/PacketCapture/PacketCapture.swift:33:18: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
31 |     let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
32 |     defer {
33 |       try! group.syncShutdownGracefully()
   |                  `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
34 |     }
35 |
/Users/admin/builder/spi-builder-workspace/Examples/v1/PacketCapture/PacketCapture.swift:46:21: warning: instance method 'syncClose' is unavailable from asynchronous contexts; syncClose() can block indefinitely, prefer close(); this is an error in the Swift 6 language mode
44 |     // Ensure that we close the file sink when we're done with it.
45 |     defer {
46 |       try! fileSink.syncClose()
   |                     `- warning: instance method 'syncClose' is unavailable from asynchronous contexts; syncClose() can block indefinitely, prefer close(); this is an error in the Swift 6 language mode
47 |     }
48 |
[1379/1420] Write Objects.LinkFileList
[1382/1420] Compiling GRPCInteroperabilityTestModels messages.pb.swift
[1383/1420] Emitting module GRPCInteroperabilityTestModels
[1384/1420] Compiling GRPCInteroperabilityTestModels empty.pb.swift
[1385/1420] Compiling GRPCInteroperabilityTestModels test.grpc.swift
[1386/1420] Compiling Echo Empty.swift
[1387/1432] Compiling ReflectionServer GreeterProvider.swift
[1388/1432] Emitting module Echo
[1389/1432] Emitting module ReflectionServer
[1390/1432] Compiling ReflectionServer ReflectionServer.swift
[1391/1432] Compiling ReflectionServer resource_bundle_accessor.swift
[1391/1432] Write Objects.LinkFileList
[1393/1432] Compiling RouteGuideClient Empty.swift
[1394/1432] Compiling RouteGuideClient RouteGuideClient.swift
/Users/admin/builder/spi-builder-workspace/Examples/v1/RouteGuide/Client/RouteGuideClient.swift:220:18: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
218 |     let group = PlatformSupport.makeEventLoopGroup(loopCount: 1)
219 |     defer {
220 |       try? group.syncShutdownGracefully()
    |                  `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
221 |     }
222 |
/Users/admin/builder/spi-builder-workspace/Examples/v1/RouteGuide/Client/RouteGuideClient.swift:229:28: warning: instance method 'wait' is unavailable from asynchronous contexts; wait() can block indefinitely, prefer get()
227 |     )
228 |     defer {
229 |       try? channel.close().wait()
    |                            `- warning: instance method 'wait' is unavailable from asynchronous contexts; wait() can block indefinitely, prefer get()
230 |     }
231 |
[1395/1432] Emitting module RouteGuideClient
[1395/1432] Write Objects.LinkFileList
[1397/1432] Compiling GRPCInteroperabilityTestsImplementation ServerFeatures.swift
[1398/1432] Compiling GRPCInteroperabilityTestsImplementation TestServiceAsyncProvider.swift
[1399/1432] Compiling GRPCInteroperabilityTestsImplementation InteroperabilityTestServer.swift
[1400/1433] Compiling GRPCConnectionBackoffInteropTest main.swift
[1401/1433] Emitting module GRPCConnectionBackoffInteropTest
[1401/1433] Write Objects.LinkFileList
[1403/1433] Compiling Echo Echo.swift
/Users/admin/builder/spi-builder-workspace/Examples/v1/Echo/Runtime/Echo.swift:59:20: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
 57 |       let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
 58 |       defer {
 59 |         try! group.syncShutdownGracefully()
    |                    `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
 60 |       }
 61 |       do {
/Users/admin/builder/spi-builder-workspace/Examples/v1/Echo/Runtime/Echo.swift:95:20: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
 93 |       let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
 94 |       defer {
 95 |         try! group.syncShutdownGracefully()
    |                    `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
 96 |       }
 97 |
/Users/admin/builder/spi-builder-workspace/Examples/v1/Echo/Runtime/Echo.swift:105:37: warning: instance method 'wait' is unavailable from asynchronous contexts; wait() can block indefinitely, prefer get()
103 |       )
104 |       defer {
105 |         try! client.channel.close().wait()
    |                                     `- warning: instance method 'wait' is unavailable from asynchronous contexts; wait() can block indefinitely, prefer get()
106 |       }
107 |
[1403/1433] Write Objects.LinkFileList
[1405/1433] Compiling GRPCInteroperabilityTestsImplementation TestServiceProvider.swift
[1406/1433] Compiling GRPCInteroperabilityTestsImplementation InteroperabilityTestCredentials.swift
[1407/1433] Compiling GRPCInteroperabilityTestsImplementation InteroperabilityTestClientConnection.swift
[1408/1433] Compiling GRPCInteroperabilityTestsImplementation InteroperabilityTestCase.swift
[1409/1433] Compiling GRPCInteroperabilityTestsImplementation Assertions.swift
[1410/1433] Compiling GRPCInteroperabilityTestsImplementation GRPCTestingConvenienceMethods.swift
[1411/1433] Emitting module GRPCInteroperabilityTestsImplementation
[1412/1433] Compiling GRPCInteroperabilityTestsImplementation InteroperabilityTestCases.swift
[1413/1435] Emitting module GRPCInteroperabilityTests
/Users/admin/builder/spi-builder-workspace/Sources/GRPCInteroperabilityTests/main.swift:25:42: warning: converting non-sendable function value to '@Sendable (String) -> any LogHandler' may introduce data races
 23 |
 24 | // Reduce stdout noise.
 25 | LoggingSystem.bootstrap(StreamLogHandler.standardError)
    |                                          `- warning: converting non-sendable function value to '@Sendable (String) -> any LogHandler' may introduce data races
 26 |
 27 | enum InteroperabilityTestError: LocalizedError {
[1414/1435] Compiling GRPCInteroperabilityTests main.swift
/Users/admin/builder/spi-builder-workspace/Sources/GRPCInteroperabilityTests/main.swift:25:42: warning: converting non-sendable function value to '@Sendable (String) -> any LogHandler' may introduce data races
 23 |
 24 | // Reduce stdout noise.
 25 | LoggingSystem.bootstrap(StreamLogHandler.standardError)
    |                                          `- warning: converting non-sendable function value to '@Sendable (String) -> any LogHandler' may introduce data races
 26 |
 27 | enum InteroperabilityTestError: LocalizedError {
[1414/1435] Write Objects.LinkFileList
[1415/1435] Linking GRPCPerformanceTests
[1416/1435] Applying GRPCPerformanceTests
[1417/1435] Linking HelloWorldServer
[1418/1435] Linking HelloWorldClient
[1419/1435] Applying HelloWorldServer
[1420/1435] Applying HelloWorldClient
[1421/1435] Linking PacketCapture
[1422/1435] Linking RouteGuideServer
[1423/1435] Applying PacketCapture
[1424/1435] Applying RouteGuideServer
[1425/1435] Linking ReflectionServer
[1426/1435] Linking RouteGuideClient
[1427/1435] Applying ReflectionServer
[1428/1435] Applying RouteGuideClient
[1429/1435] Linking GRPCConnectionBackoffInteropTest
[1430/1435] Linking Echo
[1431/1435] Applying GRPCConnectionBackoffInteropTest
[1432/1435] Applying Echo
[1433/1435] Linking GRPCInteroperabilityTests
[1434/1435] Applying GRPCInteroperabilityTests
Build complete! (80.67s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-argument-parser.git
Fetching https://github.com/apple/swift-protobuf.git
Fetching https://github.com/apple/swift-nio-ssl.git
[1/1797] Fetching swift-atomics
[415/5633] Fetching swift-atomics, swift-log
[544/11608] Fetching swift-atomics, swift-log, swift-nio-extras
[847/28248] Fetching swift-atomics, swift-log, swift-nio-extras, swift-collections
[2919/43628] Fetching swift-atomics, swift-log, swift-nio-extras, swift-collections, swift-argument-parser
[3289/58518] Fetching swift-atomics, swift-log, swift-nio-extras, swift-collections, swift-argument-parser, swift-nio-ssl
Fetched https://github.com/apple/swift-atomics.git from cache (1.07s)
[3377/56721] Fetching swift-log, swift-nio-extras, swift-collections, swift-argument-parser, swift-nio-ssl
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetched https://github.com/apple/swift-log.git from cache (1.22s)
[8314/52885] Fetching swift-nio-extras, swift-collections, swift-argument-parser, swift-nio-ssl
Fetching https://github.com/apple/swift-nio-http2.git
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.30s)
[5091/46910] Fetching swift-collections, swift-argument-parser, swift-nio-ssl
Fetching https://github.com/apple/swift-nio.git
[33659/49577] Fetching swift-collections, swift-argument-parser, swift-nio-ssl, swift-nio-transport-services
Fetched https://github.com/apple/swift-collections.git from cache (1.88s)
[17099/32937] Fetching swift-argument-parser, swift-nio-ssl, swift-nio-transport-services
[17393/72400] Fetching swift-argument-parser, swift-nio-ssl, swift-nio-transport-services, swift-protobuf
[17501/83932] Fetching swift-argument-parser, swift-nio-ssl, swift-nio-transport-services, swift-protobuf, swift-nio-http2
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (1.08s)
[18024/81265] Fetching swift-argument-parser, swift-nio-ssl, swift-protobuf, swift-nio-http2
[26170/157604] Fetching swift-argument-parser, swift-nio-ssl, swift-protobuf, swift-nio-http2, swift-nio
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.63s)
[60753/146072] Fetching swift-argument-parser, swift-nio-ssl, swift-protobuf, swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (3.69s)
[60744/69733] Fetching swift-argument-parser, swift-nio-ssl, swift-protobuf
Fetched https://github.com/apple/swift-nio-ssl.git from cache (9.53s)
Fetched https://github.com/apple/swift-protobuf.git from cache (9.53s)
Fetched https://github.com/apple/swift-argument-parser.git from cache (9.53s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (9.99s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (0.41s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.38s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (0.59s)
Fetching https://github.com/apple/swift-system.git
[1/4436] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (0.95s)
Computing version for https://github.com/apple/swift-protobuf.git
Computed https://github.com/apple/swift-protobuf.git at 1.30.0 (1.38s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (0.38s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (0.48s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.28.0 (0.44s)
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
[1/5959] Fetching swift-algorithms
[121/6863] Fetching swift-algorithms, swift-http-types
[122/9289] Fetching swift-algorithms, swift-http-types, swift-service-lifecycle
[370/15488] Fetching swift-algorithms, swift-http-types, swift-service-lifecycle, swift-certificates
[480/17104] Fetching swift-algorithms, swift-http-types, swift-service-lifecycle, swift-certificates, swift-asn1
[811/18273] Fetching swift-algorithms, swift-http-types, swift-service-lifecycle, swift-certificates, swift-asn1, swift-http-structured-headers
[1099/23258] Fetching swift-algorithms, swift-http-types, swift-service-lifecycle, swift-certificates, swift-asn1, swift-http-structured-headers, swift-async-algorithms
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.20s)
Fetched https://github.com/apple/swift-asn1.git from cache (1.20s)
Fetched https://github.com/apple/swift-http-types.git from cache (1.20s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.20s)
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (1.20s)
Fetched https://github.com/apple/swift-algorithms.git from cache (1.20s)
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (1.20s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (1.63s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.8.0 (0.39s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.0.4 (0.45s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.10.0 (0.50s)
Fetching https://github.com/apple/swift-crypto.git
[1/15433] Fetching swift-crypto
Fetched https://github.com/apple/swift-crypto.git from cache (1.78s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (2.48s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (0.52s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.51s)
Fetching https://github.com/apple/swift-numerics.git
[1/5757] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.16s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (1.57s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.32.0 (0.51s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.3.0 (0.39s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.52s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.5.1 (0.42s)
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.28.0
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.10.0
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.32.0
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.5.1
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-protobuf.git
Working copy of https://github.com/apple/swift-protobuf.git resolved at 1.30.0
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.8.0
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.12.3
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.2
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.24.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.0.4
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.65.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swift-nio-http2",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.36.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-http2.git"
    },
    {
      "identity" : "swift-nio-transport-services",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.24.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-transport-services.git"
    },
    {
      "identity" : "swift-nio-extras",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.24.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-extras.git"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.5",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.git"
    },
    {
      "identity" : "swift-atomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-atomics.git"
    },
    {
      "identity" : "swift-protobuf",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.28.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-protobuf.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.4",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    },
    {
      "identity" : "swift-nio-ssl",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.23.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-ssl.git"
    }
  ],
  "manifest_display_name" : "grpc-swift",
  "name" : "grpc-swift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "GRPC",
      "targets" : [
        "GRPC"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CGRPCZlib",
      "targets" : [
        "CGRPCZlib"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "GRPCReflectionService",
      "targets" : [
        "GRPCReflectionService"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "protoc-gen-grpc-swift",
      "targets" : [
        "protoc-gen-grpc-swift"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "GRPCSwiftPlugin",
      "targets" : [
        "GRPCSwiftPlugin"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "RouteGuideServer",
      "targets" : [
        "RouteGuideServer"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "RouteGuideClient",
      "targets" : [
        "RouteGuideClient"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "ReflectionServer",
      "targets" : [
        "ReflectionServer"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "PacketCapture",
      "targets" : [
        "PacketCapture"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "HelloWorldServer",
      "targets" : [
        "HelloWorldServer"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "HelloWorldClient",
      "targets" : [
        "HelloWorldClient"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "GRPCPerformanceTests",
      "targets" : [
        "GRPCPerformanceTests"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "GRPCInteroperabilityTests",
      "targets" : [
        "GRPCInteroperabilityTests"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "GRPCConnectionBackoffInteropTest",
      "targets" : [
        "GRPCConnectionBackoffInteropTest"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "Echo",
      "targets" : [
        "Echo"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "protoc_gen_grpc_swift",
      "module_type" : "SwiftTarget",
      "name" : "protoc-gen-grpc-swift",
      "path" : "Sources/protoc-gen-grpc-swift",
      "product_dependencies" : [
        "SwiftProtobuf",
        "SwiftProtobufPluginLibrary"
      ],
      "product_memberships" : [
        "protoc-gen-grpc-swift",
        "GRPCSwiftPlugin"
      ],
      "sources" : [
        "GenerateGRPC.swift",
        "Generator-Client+AsyncAwait.swift",
        "Generator-Client.swift",
        "Generator-Metadata.swift",
        "Generator-Names.swift",
        "Generator-Server+AsyncAwait.swift",
        "Generator-Server.swift",
        "Generator.swift",
        "Options.swift",
        "StreamingType.swift",
        "Types.swift",
        "Version.swift"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "RouteGuideServer",
      "module_type" : "SwiftTarget",
      "name" : "RouteGuideServer",
      "path" : "Examples/v1/RouteGuide/Server",
      "product_dependencies" : [
        "NIOCore",
        "NIOConcurrencyHelpers",
        "NIOPosix",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "RouteGuideServer"
      ],
      "sources" : [
        "RouteGuideProvider.swift",
        "RouteGuideServer.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "RouteGuideModel"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "RouteGuideModel",
      "module_type" : "SwiftTarget",
      "name" : "RouteGuideModel",
      "path" : "Examples/v1/RouteGuide/Model",
      "product_dependencies" : [
        "NIO",
        "SwiftProtobuf"
      ],
      "product_memberships" : [
        "RouteGuideServer",
        "RouteGuideClient"
      ],
      "sources" : [
        "route_guide.grpc.swift",
        "route_guide.pb.swift"
      ],
      "target_dependencies" : [
        "GRPC"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RouteGuideClient",
      "module_type" : "SwiftTarget",
      "name" : "RouteGuideClient",
      "path" : "Examples/v1/RouteGuide/Client",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "RouteGuideClient"
      ],
      "sources" : [
        "Empty.swift",
        "RouteGuideClient.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "RouteGuideModel"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ReflectionServer",
      "module_type" : "SwiftTarget",
      "name" : "ReflectionServer",
      "path" : "Examples/v1/ReflectionService",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "ReflectionServer"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Examples/v1/ReflectionService/Generated",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "GreeterProvider.swift",
        "ReflectionServer.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "GRPCReflectionService",
        "HelloWorldModel",
        "EchoModel",
        "EchoImplementation"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "PacketCapture",
      "module_type" : "SwiftTarget",
      "name" : "PacketCapture",
      "path" : "Examples/v1/PacketCapture",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "NIOExtras",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "PacketCapture"
      ],
      "sources" : [
        "Empty.swift",
        "PacketCapture.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "EchoModel"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "HelloWorldServer",
      "module_type" : "SwiftTarget",
      "name" : "HelloWorldServer",
      "path" : "Examples/v1/HelloWorld/Server",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "HelloWorldServer"
      ],
      "sources" : [
        "GreeterProvider.swift",
        "HelloWorldServer.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "HelloWorldModel"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "HelloWorldModel",
      "module_type" : "SwiftTarget",
      "name" : "HelloWorldModel",
      "path" : "Examples/v1/HelloWorld/Model",
      "product_dependencies" : [
        "NIO",
        "SwiftProtobuf"
      ],
      "product_memberships" : [
        "ReflectionServer",
        "HelloWorldServer",
        "HelloWorldClient"
      ],
      "sources" : [
        "helloworld.grpc.swift",
        "helloworld.pb.swift"
      ],
      "target_dependencies" : [
        "GRPC"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HelloWorldClient",
      "module_type" : "SwiftTarget",
      "name" : "HelloWorldClient",
      "path" : "Examples/v1/HelloWorld/Client",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "HelloWorldClient"
      ],
      "sources" : [
        "HelloWorldClient.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "HelloWorldModel"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "GRPCTests",
      "module_type" : "SwiftTarget",
      "name" : "GRPCTests",
      "path" : "Tests/GRPCTests",
      "product_dependencies" : [
        "NIOCore",
        "NIOConcurrencyHelpers",
        "NIOPosix",
        "NIOTLS",
        "NIOHTTP1",
        "NIOHTTP2",
        "NIOEmbedded",
        "NIOTransportServices",
        "Logging",
        "Atomics",
        "NIOSSL"
      ],
      "sources" : [
        "ALPNConfigurationTests.swift",
        "AnyServiceClientTests.swift",
        "Array+BoundsCheckingTests.swift",
        "AsyncAwaitSupport/AsyncClientTests.swift",
        "AsyncAwaitSupport/AsyncIntegrationTests.swift",
        "AsyncAwaitSupport/AsyncSequence+Helpers.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerHandlerStateMachine/ServerHandlerStateMachineTests.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerInterceptorStateMachine/ServerInterceptorStateMachineStreamStateTests.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerInterceptorStateMachine/ServerInterceptorStateMachineTests.swift",
        "AsyncAwaitSupport/GRPCAsyncRequestStreamTests.swift",
        "AsyncAwaitSupport/GRPCAsyncResponseStreamWriterTests.swift",
        "AsyncAwaitSupport/InterceptorsAsyncTests.swift",
        "AsyncAwaitSupport/XCTest+AsyncAwait.swift",
        "BasicEchoTestCase.swift",
        "CallPathTests.swift",
        "CallStartBehaviorTests.swift",
        "CapturingLogHandler.swift",
        "ClientCallTests.swift",
        "ClientCancellingTests.swift",
        "ClientClosedChannelTests.swift",
        "ClientConnectionBackoffTests.swift",
        "ClientEventLoopPreferenceTests.swift",
        "ClientInterceptorPipelineTests.swift",
        "ClientQuiescingTests.swift",
        "ClientTLSFailureTests.swift",
        "ClientTLSTests.swift",
        "ClientTimeoutTests.swift",
        "ClientTransportTests.swift",
        "CoalescingLengthPrefixedMessageWriterTests.swift",
        "Codegen/Normalization/NormalizationProvider.swift",
        "Codegen/Normalization/NormalizationTests.swift",
        "Codegen/Normalization/normalization.grpc.swift",
        "Codegen/Normalization/normalization.pb.swift",
        "Codegen/Serialization/SerializationTests.swift",
        "CompressionTests.swift",
        "ConfigurationTests.swift",
        "ConnectionBackoffTests.swift",
        "ConnectionFailingTests.swift",
        "ConnectionManagerTests.swift",
        "ConnectionPool/ConnectionPoolDelegates.swift",
        "ConnectionPool/ConnectionPoolTests.swift",
        "ConnectionPool/GRPCChannelPoolTests.swift",
        "ConnectionPool/PoolManagerStateMachineTests.swift",
        "ConnectivityStateMonitorTests.swift",
        "DebugChannelInitializerTests.swift",
        "DelegatingErrorHandlerTests.swift",
        "EchoHelpers/EchoMessageHelpers.swift",
        "EchoHelpers/Interceptors/DelegatingClientInterceptor.swift",
        "EchoHelpers/Interceptors/EchoInterceptorFactories.swift",
        "EchoHelpers/Providers/DelegatingOnCloseEchoProvider.swift",
        "EchoHelpers/Providers/FailingEchoProvider.swift",
        "EchoHelpers/Providers/MetadataEchoProvider.swift",
        "EchoHelpers/Providers/NeverResolvingEchoProvider.swift",
        "EchoMetadataTests.swift",
        "EchoTestClientTests.swift",
        "ErrorRecordingDelegate.swift",
        "EventLoopFuture+Assertions.swift",
        "FakeChannelTests.swift",
        "FakeResponseStreamTests.swift",
        "FunctionalTests.swift",
        "GRPCAsyncClientCallTests.swift",
        "GRPCAsyncServerHandlerTests.swift",
        "GRPCClientChannelHandlerTests.swift",
        "GRPCClientStateMachineTests.swift",
        "GRPCCustomPayloadTests.swift",
        "GRPCIdleHandlerStateMachineTests.swift",
        "GRPCIdleTests.swift",
        "GRPCInteroperabilityTests.swift",
        "GRPCKeepaliveTests.swift",
        "GRPCMessageLengthLimitTests.swift",
        "GRPCNetworkFrameworkTests.swift",
        "GRPCPingHandlerTests.swift",
        "GRPCReflectionServiceTests/Generated/v1/reflection-v1.grpc.swift",
        "GRPCReflectionServiceTests/Generated/v1/reflection-v1.pb.swift",
        "GRPCReflectionServiceTests/Generated/v1Alpha/reflection-v1alpha.grpc.swift",
        "GRPCReflectionServiceTests/Generated/v1Alpha/reflection-v1alpha.pb.swift",
        "GRPCReflectionServiceTests/ReflectionServiceIntegrationTests.swift",
        "GRPCReflectionServiceTests/ReflectionServiceUnitTests.swift",
        "GRPCReflectionServiceTests/Utils.swift",
        "GRPCServerPipelineConfiguratorTests.swift",
        "GRPCStatusCodeTests.swift",
        "GRPCStatusMessageMarshallerTests.swift",
        "GRPCStatusTests.swift",
        "GRPCTestCase.swift",
        "GRPCTimeoutTests.swift",
        "GRPCTypeSizeTests.swift",
        "GRPCWebToHTTP2ServerCodecTests.swift",
        "GRPCWebToHTTP2StateMachineTests.swift",
        "HTTP2MaxConcurrentStreamsTests.swift",
        "HTTP2ToRawGRPCStateMachineTests.swift",
        "HTTPVersionParserTests.swift",
        "HeaderNormalizationTests.swift",
        "ImmediateServerFailureTests.swift",
        "InterceptedRPCCancellationTests.swift",
        "InterceptorsTests.swift",
        "LazyEventLoopPromiseTests.swift",
        "LengthPrefixedMessageReaderTests.swift",
        "MaxAgeTests.swift",
        "MessageEncodingHeaderValidatorTests.swift",
        "MutualTLSTests.swift",
        "OneOrManyQueueTests.swift",
        "PlatformSupportTests.swift",
        "RequestIDProviderTests.swift",
        "RequestIDTests.swift",
        "SampleCertificate+Assertions.swift",
        "ServerErrorDelegateTests.swift",
        "ServerFuzzingRegressionTests.swift",
        "ServerInterceptorPipelineTests.swift",
        "ServerInterceptorTests.swift",
        "ServerOnCloseTests.swift",
        "ServerQuiescingTests.swift",
        "ServerTLSErrorTests.swift",
        "ServerTests.swift",
        "ServerThrowingTests.swift",
        "ServerWebTests.swift",
        "StopwatchTests.swift",
        "StreamResponseHandlerRetainCycleTests.swift",
        "StreamingRequestClientCallTests.swift",
        "TestClientExample.swift",
        "TimeLimitTests.swift",
        "UnaryServerHandlerTests.swift",
        "UserInfoTests.swift",
        "VsockSocketTests.swift",
        "WebCORSHandlerTests.swift",
        "WithConnectedSocketTests.swift",
        "XCTestHelpers.swift",
        "ZeroLengthWriteTests.swift",
        "ZlibTests.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "EchoModel",
        "EchoImplementation",
        "HelloWorldModel",
        "GRPCInteroperabilityTestModels",
        "GRPCInteroperabilityTestsImplementation",
        "GRPCSampleData",
        "GRPCReflectionService"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GRPCSwiftPlugin",
      "module_type" : "PluginTarget",
      "name" : "GRPCSwiftPlugin",
      "path" : "Plugins/GRPCSwiftPlugin",
      "plugin_capability" : {
        "type" : "buildTool"
      },
      "product_memberships" : [
        "GRPCSwiftPlugin"
      ],
      "sources" : [
        "plugin.swift"
      ],
      "target_dependencies" : [
        "protoc-gen-grpc-swift"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "GRPCSampleData",
      "module_type" : "SwiftTarget",
      "name" : "GRPCSampleData",
      "path" : "Sources/GRPCSampleData",
      "product_dependencies" : [
        "NIOSSL"
      ],
      "product_memberships" : [
        "GRPCPerformanceTests",
        "Echo"
      ],
      "sources" : [
        "GRPCSwiftCertificate.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GRPCReflectionService",
      "module_type" : "SwiftTarget",
      "name" : "GRPCReflectionService",
      "path" : "Sources/GRPCReflectionService",
      "product_dependencies" : [
        "NIO",
        "SwiftProtobuf"
      ],
      "product_memberships" : [
        "GRPCReflectionService",
        "ReflectionServer"
      ],
      "sources" : [
        "Server/ReflectionService.swift",
        "Server/ReflectionServiceV1.swift",
        "Server/ReflectionServiceV1Alpha.swift",
        "v1/reflection-v1.grpc.swift",
        "v1/reflection-v1.pb.swift",
        "v1Alpha/reflection-v1alpha.grpc.swift",
        "v1Alpha/reflection-v1alpha.pb.swift"
      ],
      "target_dependencies" : [
        "GRPC"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GRPCPerformanceTests",
      "module_type" : "SwiftTarget",
      "name" : "GRPCPerformanceTests",
      "path" : "Sources/GRPCPerformanceTests",
      "product_dependencies" : [
        "NIOCore",
        "NIOEmbedded",
        "NIOPosix",
        "NIOHTTP2",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "GRPCPerformanceTests"
      ],
      "sources" : [
        "Benchmark.swift",
        "BenchmarkUtils.swift",
        "Benchmarks/EmbeddedClientThroughput.swift",
        "Benchmarks/EmbeddedServer.swift",
        "Benchmarks/MinimalEchoProvider.swift",
        "Benchmarks/PercentEncoding.swift",
        "Benchmarks/ServerProvidingBenchmark.swift",
        "Benchmarks/UnaryThroughput.swift",
        "Benchmarks/echo.grpc.swift",
        "Benchmarks/echo.pb.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "GRPCSampleData"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "GRPCInteroperabilityTestsImplementation",
      "module_type" : "SwiftTarget",
      "name" : "GRPCInteroperabilityTestsImplementation",
      "path" : "Sources/GRPCInteroperabilityTestsImplementation",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "NIOHTTP1",
        "Logging",
        "NIOSSL"
      ],
      "product_memberships" : [
        "GRPCInteroperabilityTests"
      ],
      "sources" : [
        "Assertions.swift",
        "GRPCTestingConvenienceMethods.swift",
        "InteroperabilityTestCase.swift",
        "InteroperabilityTestCases.swift",
        "InteroperabilityTestClientConnection.swift",
        "InteroperabilityTestCredentials.swift",
        "InteroperabilityTestServer.swift",
        "ServerFeatures.swift",
        "TestServiceAsyncProvider.swift",
        "TestServiceProvider.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "GRPCInteroperabilityTestModels"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GRPCInteroperabilityTests",
      "module_type" : "SwiftTarget",
      "name" : "GRPCInteroperabilityTests",
      "path" : "Sources/GRPCInteroperabilityTests",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "Logging",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "GRPCInteroperabilityTests"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "GRPCInteroperabilityTestsImplementation"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "GRPCInteroperabilityTestModels",
      "module_type" : "SwiftTarget",
      "name" : "GRPCInteroperabilityTestModels",
      "path" : "Sources/GRPCInteroperabilityTestModels",
      "product_dependencies" : [
        "NIO",
        "SwiftProtobuf"
      ],
      "product_memberships" : [
        "GRPCInteroperabilityTests",
        "GRPCConnectionBackoffInteropTest"
      ],
      "sources" : [
        "Generated/empty.pb.swift",
        "Generated/messages.pb.swift",
        "Generated/test.grpc.swift",
        "Generated/test.pb.swift"
      ],
      "target_dependencies" : [
        "GRPC"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GRPCConnectionBackoffInteropTest",
      "module_type" : "SwiftTarget",
      "name" : "GRPCConnectionBackoffInteropTest",
      "path" : "Sources/GRPCConnectionBackoffInteropTest",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "Logging",
        "ArgumentParser"
      ],
      "product_memberships" : [
        "GRPCConnectionBackoffInteropTest"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "GRPCInteroperabilityTestModels"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "GRPC",
      "module_type" : "SwiftTarget",
      "name" : "GRPC",
      "path" : "Sources/GRPC",
      "product_dependencies" : [
        "NIO",
        "NIOCore",
        "NIOPosix",
        "NIOEmbedded",
        "NIOFoundationCompat",
        "NIOTLS",
        "NIOTransportServices",
        "NIOHTTP1",
        "NIOHTTP2",
        "NIOExtras",
        "Logging",
        "SwiftProtobuf",
        "DequeModule",
        "Atomics",
        "NIOSSL"
      ],
      "product_memberships" : [
        "GRPC",
        "GRPCReflectionService",
        "RouteGuideServer",
        "RouteGuideClient",
        "ReflectionServer",
        "PacketCapture",
        "HelloWorldServer",
        "HelloWorldClient",
        "GRPCPerformanceTests",
        "GRPCInteroperabilityTests",
        "GRPCConnectionBackoffInteropTest",
        "Echo"
      ],
      "sources" : [
        "Array+BoundsCheck.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerHandlerStateMachine/ServerHandlerStateMachine+Actions.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerHandlerStateMachine/ServerHandlerStateMachine+Draining.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerHandlerStateMachine/ServerHandlerStateMachine+Finished.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerHandlerStateMachine/ServerHandlerStateMachine+Handling.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerHandlerStateMachine/ServerHandlerStateMachine+Idle.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerHandlerStateMachine/ServerHandlerStateMachine.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerInterceptorStateMachine/ServerInterceptorStateMachine+Actions.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerInterceptorStateMachine/ServerInterceptorStateMachine+Finished.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerInterceptorStateMachine/ServerInterceptorStateMachine+Intercepting.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerInterceptorStateMachine/ServerInterceptorStateMachine.swift",
        "AsyncAwaitSupport/AsyncServerHandler/ServerInterceptorStateMachine/StreamState.swift",
        "AsyncAwaitSupport/Call+AsyncRequestStreamWriter.swift",
        "AsyncAwaitSupport/CancellationError+GRPCStatusTransformable.swift",
        "AsyncAwaitSupport/GRPCAsyncBidirectionalStreamingCall.swift",
        "AsyncAwaitSupport/GRPCAsyncClientStreamingCall.swift",
        "AsyncAwaitSupport/GRPCAsyncRequestStream.swift",
        "AsyncAwaitSupport/GRPCAsyncRequestStreamWriter.swift",
        "AsyncAwaitSupport/GRPCAsyncResponseStream.swift",
        "AsyncAwaitSupport/GRPCAsyncResponseStreamWriter.swift",
        "AsyncAwaitSupport/GRPCAsyncSequenceProducerDelegate.swift",
        "AsyncAwaitSupport/GRPCAsyncServerCallContext.swift",
        "AsyncAwaitSupport/GRPCAsyncServerHandler.swift",
        "AsyncAwaitSupport/GRPCAsyncServerStreamingCall.swift",
        "AsyncAwaitSupport/GRPCAsyncUnaryCall.swift",
        "AsyncAwaitSupport/GRPCAsyncWriterSinkDelegate.swift",
        "AsyncAwaitSupport/GRPCChannel+AsyncAwaitSupport.swift",
        "AsyncAwaitSupport/GRPCClient+AsyncAwaitSupport.swift",
        "AsyncAwaitSupport/GRPCSendable.swift",
        "AsyncAwaitSupport/NIOAsyncWrappers.swift",
        "CallHandlers/BidirectionalStreamingServerHandler.swift",
        "CallHandlers/ClientStreamingServerHandler.swift",
        "CallHandlers/ServerHandlerProtocol.swift",
        "CallHandlers/ServerStreamingServerHandler.swift",
        "CallHandlers/UnaryServerHandler.swift",
        "CallOptions.swift",
        "ClientCalls/BidirectionalStreamingCall.swift",
        "ClientCalls/Call.swift",
        "ClientCalls/CallDetails.swift",
        "ClientCalls/ClientCall.swift",
        "ClientCalls/ClientStreamingCall.swift",
        "ClientCalls/LazyEventLoopPromise.swift",
        "ClientCalls/ResponseContainers.swift",
        "ClientCalls/ResponsePartContainer.swift",
        "ClientCalls/ServerStreamingCall.swift",
        "ClientCalls/UnaryCall.swift",
        "ClientConnection.swift",
        "ClientConnectionConfiguration+NIOSSL.swift",
        "ClientErrorDelegate.swift",
        "CoalescingLengthPrefixedMessageWriter.swift",
        "Compression/CompressionAlgorithm.swift",
        "Compression/DecompressionLimit.swift",
        "Compression/MessageEncoding.swift",
        "Compression/Zlib.swift",
        "ConnectionBackoff.swift",
        "ConnectionKeepalive.swift",
        "ConnectionManager+Delegates.swift",
        "ConnectionManager.swift",
        "ConnectionManagerChannelProvider.swift",
        "ConnectionPool/ConnectionManagerID.swift",
        "ConnectionPool/ConnectionPool+PerConnectionState.swift",
        "ConnectionPool/ConnectionPool+Waiter.swift",
        "ConnectionPool/ConnectionPool.swift",
        "ConnectionPool/ConnectionPoolIDs.swift",
        "ConnectionPool/GRPCChannelPool.swift",
        "ConnectionPool/PoolManager.swift",
        "ConnectionPool/PoolManagerStateMachine+PerPoolState.swift",
        "ConnectionPool/PoolManagerStateMachine.swift",
        "ConnectionPool/PooledChannel.swift",
        "ConnectionPool/StreamLender.swift",
        "ConnectivityState.swift",
        "DebugOnly.swift",
        "DelegatingErrorHandler.swift",
        "Error+NIOSSL.swift",
        "EventLoopFuture+RecoverFromUncleanShutdown.swift",
        "FakeChannel.swift",
        "GRPCChannel/ClientConnection+NIOSSL.swift",
        "GRPCChannel/ClientConnection+NWTLS.swift",
        "GRPCChannel/GRPCChannel.swift",
        "GRPCChannel/GRPCChannelBuilder.swift",
        "GRPCClient.swift",
        "GRPCClientChannelHandler.swift",
        "GRPCClientStateMachine.swift",
        "GRPCContentType.swift",
        "GRPCError.swift",
        "GRPCHeaderName.swift",
        "GRPCIdleHandler.swift",
        "GRPCIdleHandlerStateMachine.swift",
        "GRPCKeepaliveHandlers.swift",
        "GRPCPayload.swift",
        "GRPCServerPipelineConfigurator.swift",
        "GRPCServerRequestRoutingHandler.swift",
        "GRPCServiceDescription.swift",
        "GRPCStatus.swift",
        "GRPCStatusAndMetadata.swift",
        "GRPCStatusMessageMarshaller.swift",
        "GRPCTLSConfiguration.swift",
        "GRPCTimeout.swift",
        "GRPCWebToHTTP2ServerCodec.swift",
        "HTTP2ToRawGRPCServerCodec.swift",
        "HTTP2ToRawGRPCStateMachine.swift",
        "Interceptor/ClientInterceptorContext.swift",
        "Interceptor/ClientInterceptorPipeline.swift",
        "Interceptor/ClientInterceptorProtocol.swift",
        "Interceptor/ClientInterceptors.swift",
        "Interceptor/ClientTransport.swift",
        "Interceptor/ClientTransportFactory.swift",
        "Interceptor/MessageParts.swift",
        "Interceptor/ServerInterceptorContext.swift",
        "Interceptor/ServerInterceptorPipeline.swift",
        "Interceptor/ServerInterceptors.swift",
        "InterceptorContextList.swift",
        "LengthPrefixedMessageReader.swift",
        "Logger.swift",
        "LoggingServerErrorDelegate.swift",
        "MessageEncodingHeaderValidator.swift",
        "PlatformSupport.swift",
        "ReadWriteStates.swift",
        "Ref.swift",
        "Serialization.swift",
        "Server+NIOSSL.swift",
        "Server.swift",
        "ServerBuilder+NIOSSL.swift",
        "ServerBuilder.swift",
        "ServerCallContexts/ServerCallContext.swift",
        "ServerCallContexts/StreamingResponseCallContext.swift",
        "ServerCallContexts/UnaryResponseCallContext.swift",
        "ServerChannelErrorHandler.swift",
        "ServerErrorDelegate.swift",
        "ServerErrorProcessor.swift",
        "Stopwatch.swift",
        "StreamEvent.swift",
        "TLSVerificationHandler.swift",
        "TLSVersion.swift",
        "TimeLimit.swift",
        "UserInfo.swift",
        "Version.swift",
        "WebCORSHandler.swift",
        "WriteCapturingHandler.swift",
        "_EmbeddedThroughput.swift",
        "_FakeResponseStream.swift",
        "_GRPCClientCodecHandler.swift",
        "_MessageContext.swift"
      ],
      "target_dependencies" : [
        "CGRPCZlib"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EchoModel",
      "module_type" : "SwiftTarget",
      "name" : "EchoModel",
      "path" : "Examples/v1/Echo/Model",
      "product_dependencies" : [
        "NIO",
        "SwiftProtobuf"
      ],
      "product_memberships" : [
        "ReflectionServer",
        "PacketCapture",
        "Echo"
      ],
      "sources" : [
        "echo.grpc.swift",
        "echo.pb.swift"
      ],
      "target_dependencies" : [
        "GRPC"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EchoImplementation",
      "module_type" : "SwiftTarget",
      "name" : "EchoImplementation",
      "path" : "Examples/v1/Echo/Implementation",
      "product_dependencies" : [
        "NIOCore",
        "NIOHTTP2",
        "SwiftProtobuf"
      ],
      "product_memberships" : [
        "ReflectionServer",
        "Echo"
      ],
      "sources" : [
        "EchoAsyncProvider.swift",
        "EchoProvider.swift",
        "HPACKHeaders+Prettify.swift",
        "Interceptors.swift"
      ],
      "target_dependencies" : [
        "EchoModel",
        "GRPC"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Echo",
      "module_type" : "SwiftTarget",
      "name" : "Echo",
      "path" : "Examples/v1/Echo/Runtime",
      "product_dependencies" : [
        "NIOCore",
        "NIOPosix",
        "Logging",
        "ArgumentParser",
        "NIOSSL"
      ],
      "product_memberships" : [
        "Echo"
      ],
      "sources" : [
        "Echo.swift",
        "Empty.swift"
      ],
      "target_dependencies" : [
        "GRPC",
        "EchoModel",
        "EchoImplementation",
        "GRPCSampleData"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "CGRPCZlib",
      "module_type" : "ClangTarget",
      "name" : "CGRPCZlib",
      "path" : "Sources/CGRPCZlib",
      "product_memberships" : [
        "GRPC",
        "CGRPCZlib",
        "GRPCReflectionService",
        "RouteGuideServer",
        "RouteGuideClient",
        "ReflectionServer",
        "PacketCapture",
        "HelloWorldServer",
        "HelloWorldClient",
        "GRPCPerformanceTests",
        "GRPCInteroperabilityTests",
        "GRPCConnectionBackoffInteropTest",
        "Echo"
      ],
      "sources" : [
        "empty.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Done.