The Swift Package Index logo.Swift Package Index

Build Information

Successful build of grpc-swift, reference 2.2.3 (adc18c), with Swift 6.3 for Android on 16 Apr 2026 09:21:15 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

197 |     public init(
198 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
200 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:199:74: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
197 |     public init(
198 |       metadata: Metadata,
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
200 |     ) {
201 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:251:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
249 |
250 |   /// The metadata to be sent to the client at the start of the response.
251 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
252 |     get {
253 |       switch self.accepted {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:284:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 |   ///
283 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
284 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
285 |     switch self.accepted {
286 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:304:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
302 |   public init(
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
306 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:305:72: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
306 |   ) {
307 |     let contents = Contents(metadata: metadata, producer: producer)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:321:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
319 |
320 |   /// The metadata to be sent to the client at the start of the response.
321 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
322 |     get {
323 |       switch self.accepted {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[167/195] Compiling GRPCCore ServerContext+RPCCancellationHandle.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/RPCRouter.swift:38:36: warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 36 | ///    want to be served.
 37 | @available(gRPCSwift 2.0, *)
 38 | public struct RPCRouter<Transport: ServerTransport>: Sendable {
    |                                    `- warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 39 |   @usableFromInline
 40 |   struct RPCHandler: Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:24:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
22 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
23 |   /// metadata.
24 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
25 |
26 |   /// The message received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:34:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
32 |   ///   - metadata: Metadata received from the client.
33 |   ///   - message: The message received from the client.
34 |   public init(metadata: Metadata, message: Message) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
35 |     self.metadata = metadata
36 |     self.message = message
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:47:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
45 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
46 |   /// metadata.
47 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
48 |
49 |   /// A sequence of messages received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:59:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
57 |   ///   - metadata: Metadata received from the client.
58 |   ///   - messages: A sequence of messages received from the client.
59 |   public init(metadata: Metadata, messages: RPCAsyncSequence<Message, any Error>) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
60 |     self.metadata = metadata
61 |     self.messages = messages
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:80:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 78 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 79 |     /// which may be sent.
 80 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 81 |
 82 |     /// The message to send to the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:92:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 90 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 91 |     /// which may be sent.
 92 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 93 |
 94 |     /// Create a new single client request.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:104:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
102 |     public init(
103 |       message: Message,
104 |       metadata: Metadata = [:],
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
105 |       trailingMetadata: Metadata = [:]
106 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:105:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
103 |       message: Message,
104 |       metadata: Metadata = [:],
105 |       trailingMetadata: Metadata = [:]
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
106 |     ) {
107 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:177:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
175 |   public struct Contents: Sendable {
176 |     /// Metadata to send to the client at the beginning of the response stream.
177 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
178 |
179 |     /// A closure which, when called, writes values into the provided writer and returns trailing
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:190:73: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
188 |     ///
189 |     /// gRPC will invoke this function at most once therefore it isn't required to be idempotent.
190 |     public var producer: @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
191 |
192 |     /// Create a ``Contents``.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:198:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
196 |     ///   - producer: A function which produces values
197 |     public init(
198 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
200 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:199:74: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
197 |     public init(
198 |       metadata: Metadata,
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
200 |     ) {
201 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:251:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
249 |
250 |   /// The metadata to be sent to the client at the start of the response.
251 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
252 |     get {
253 |       switch self.accepted {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:284:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 |   ///
283 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
284 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
285 |     switch self.accepted {
286 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:304:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
302 |   public init(
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
306 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:305:72: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
306 |   ) {
307 |     let contents = Contents(metadata: metadata, producer: producer)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:321:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
319 |
320 |   /// The metadata to be sent to the client at the start of the response.
321 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
322 |     get {
323 |       switch self.accepted {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[168/195] Compiling GRPCCore ServerContext.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/RPCRouter.swift:38:36: warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 36 | ///    want to be served.
 37 | @available(gRPCSwift 2.0, *)
 38 | public struct RPCRouter<Transport: ServerTransport>: Sendable {
    |                                    `- warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 39 |   @usableFromInline
 40 |   struct RPCHandler: Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:24:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
22 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
23 |   /// metadata.
24 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
25 |
26 |   /// The message received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:34:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
32 |   ///   - metadata: Metadata received from the client.
33 |   ///   - message: The message received from the client.
34 |   public init(metadata: Metadata, message: Message) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
35 |     self.metadata = metadata
36 |     self.message = message
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:47:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
45 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
46 |   /// metadata.
47 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
48 |
49 |   /// A sequence of messages received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:59:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
57 |   ///   - metadata: Metadata received from the client.
58 |   ///   - messages: A sequence of messages received from the client.
59 |   public init(metadata: Metadata, messages: RPCAsyncSequence<Message, any Error>) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
60 |     self.metadata = metadata
61 |     self.messages = messages
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:80:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 78 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 79 |     /// which may be sent.
 80 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 81 |
 82 |     /// The message to send to the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:92:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 90 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 91 |     /// which may be sent.
 92 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 93 |
 94 |     /// Create a new single client request.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:104:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
102 |     public init(
103 |       message: Message,
104 |       metadata: Metadata = [:],
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
105 |       trailingMetadata: Metadata = [:]
106 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:105:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
103 |       message: Message,
104 |       metadata: Metadata = [:],
105 |       trailingMetadata: Metadata = [:]
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
106 |     ) {
107 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:177:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
175 |   public struct Contents: Sendable {
176 |     /// Metadata to send to the client at the beginning of the response stream.
177 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
178 |
179 |     /// A closure which, when called, writes values into the provided writer and returns trailing
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:190:73: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
188 |     ///
189 |     /// gRPC will invoke this function at most once therefore it isn't required to be idempotent.
190 |     public var producer: @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
191 |
192 |     /// Create a ``Contents``.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:198:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
196 |     ///   - producer: A function which produces values
197 |     public init(
198 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
200 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:199:74: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
197 |     public init(
198 |       metadata: Metadata,
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
200 |     ) {
201 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:251:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
249 |
250 |   /// The metadata to be sent to the client at the start of the response.
251 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
252 |     get {
253 |       switch self.accepted {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:284:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 |   ///
283 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
284 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
285 |     switch self.accepted {
286 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:304:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
302 |   public init(
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
306 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:305:72: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
306 |   ) {
307 |     let contents = Contents(metadata: metadata, producer: producer)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:321:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
319 |
320 |   /// The metadata to be sent to the client at the start of the response.
321 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
322 |     get {
323 |       switch self.accepted {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[169/195] Compiling GRPCCore ServerInterceptor.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/RPCRouter.swift:38:36: warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 36 | ///    want to be served.
 37 | @available(gRPCSwift 2.0, *)
 38 | public struct RPCRouter<Transport: ServerTransport>: Sendable {
    |                                    `- warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 39 |   @usableFromInline
 40 |   struct RPCHandler: Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:24:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
22 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
23 |   /// metadata.
24 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
25 |
26 |   /// The message received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:34:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
32 |   ///   - metadata: Metadata received from the client.
33 |   ///   - message: The message received from the client.
34 |   public init(metadata: Metadata, message: Message) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
35 |     self.metadata = metadata
36 |     self.message = message
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:47:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
45 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
46 |   /// metadata.
47 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
48 |
49 |   /// A sequence of messages received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:59:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
57 |   ///   - metadata: Metadata received from the client.
58 |   ///   - messages: A sequence of messages received from the client.
59 |   public init(metadata: Metadata, messages: RPCAsyncSequence<Message, any Error>) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
60 |     self.metadata = metadata
61 |     self.messages = messages
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:80:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 78 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 79 |     /// which may be sent.
 80 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 81 |
 82 |     /// The message to send to the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:92:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 90 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 91 |     /// which may be sent.
 92 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 93 |
 94 |     /// Create a new single client request.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:104:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
102 |     public init(
103 |       message: Message,
104 |       metadata: Metadata = [:],
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
105 |       trailingMetadata: Metadata = [:]
106 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:105:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
103 |       message: Message,
104 |       metadata: Metadata = [:],
105 |       trailingMetadata: Metadata = [:]
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
106 |     ) {
107 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:177:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
175 |   public struct Contents: Sendable {
176 |     /// Metadata to send to the client at the beginning of the response stream.
177 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
178 |
179 |     /// A closure which, when called, writes values into the provided writer and returns trailing
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:190:73: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
188 |     ///
189 |     /// gRPC will invoke this function at most once therefore it isn't required to be idempotent.
190 |     public var producer: @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
191 |
192 |     /// Create a ``Contents``.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:198:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
196 |     ///   - producer: A function which produces values
197 |     public init(
198 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
200 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:199:74: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
197 |     public init(
198 |       metadata: Metadata,
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
200 |     ) {
201 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:251:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
249 |
250 |   /// The metadata to be sent to the client at the start of the response.
251 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
252 |     get {
253 |       switch self.accepted {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:284:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 |   ///
283 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
284 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
285 |     switch self.accepted {
286 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:304:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
302 |   public init(
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
306 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:305:72: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
306 |   ) {
307 |     let contents = Contents(metadata: metadata, producer: producer)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:321:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
319 |
320 |   /// The metadata to be sent to the client at the start of the response.
321 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
322 |     get {
323 |       switch self.accepted {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[170/195] Compiling GRPCCore ServerRequest.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/RPCRouter.swift:38:36: warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 36 | ///    want to be served.
 37 | @available(gRPCSwift 2.0, *)
 38 | public struct RPCRouter<Transport: ServerTransport>: Sendable {
    |                                    `- warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 39 |   @usableFromInline
 40 |   struct RPCHandler: Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:24:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
22 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
23 |   /// metadata.
24 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
25 |
26 |   /// The message received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:34:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
32 |   ///   - metadata: Metadata received from the client.
33 |   ///   - message: The message received from the client.
34 |   public init(metadata: Metadata, message: Message) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
35 |     self.metadata = metadata
36 |     self.message = message
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:47:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
45 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
46 |   /// metadata.
47 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
48 |
49 |   /// A sequence of messages received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:59:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
57 |   ///   - metadata: Metadata received from the client.
58 |   ///   - messages: A sequence of messages received from the client.
59 |   public init(metadata: Metadata, messages: RPCAsyncSequence<Message, any Error>) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
60 |     self.metadata = metadata
61 |     self.messages = messages
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:80:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 78 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 79 |     /// which may be sent.
 80 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 81 |
 82 |     /// The message to send to the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:92:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 90 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 91 |     /// which may be sent.
 92 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 93 |
 94 |     /// Create a new single client request.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:104:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
102 |     public init(
103 |       message: Message,
104 |       metadata: Metadata = [:],
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
105 |       trailingMetadata: Metadata = [:]
106 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:105:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
103 |       message: Message,
104 |       metadata: Metadata = [:],
105 |       trailingMetadata: Metadata = [:]
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
106 |     ) {
107 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:177:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
175 |   public struct Contents: Sendable {
176 |     /// Metadata to send to the client at the beginning of the response stream.
177 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
178 |
179 |     /// A closure which, when called, writes values into the provided writer and returns trailing
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:190:73: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
188 |     ///
189 |     /// gRPC will invoke this function at most once therefore it isn't required to be idempotent.
190 |     public var producer: @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
191 |
192 |     /// Create a ``Contents``.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:198:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
196 |     ///   - producer: A function which produces values
197 |     public init(
198 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
200 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:199:74: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
197 |     public init(
198 |       metadata: Metadata,
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
200 |     ) {
201 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:251:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
249 |
250 |   /// The metadata to be sent to the client at the start of the response.
251 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
252 |     get {
253 |       switch self.accepted {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:284:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 |   ///
283 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
284 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
285 |     switch self.accepted {
286 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:304:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
302 |   public init(
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
306 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:305:72: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
306 |   ) {
307 |     let contents = Contents(metadata: metadata, producer: producer)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:321:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
319 |
320 |   /// The metadata to be sent to the client at the start of the response.
321 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
322 |     get {
323 |       switch self.accepted {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[171/195] Compiling GRPCCore ServerResponse.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/RPCRouter.swift:38:36: warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 36 | ///    want to be served.
 37 | @available(gRPCSwift 2.0, *)
 38 | public struct RPCRouter<Transport: ServerTransport>: Sendable {
    |                                    `- warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 39 |   @usableFromInline
 40 |   struct RPCHandler: Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:24:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
22 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
23 |   /// metadata.
24 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
25 |
26 |   /// The message received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:34:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
32 |   ///   - metadata: Metadata received from the client.
33 |   ///   - message: The message received from the client.
34 |   public init(metadata: Metadata, message: Message) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
35 |     self.metadata = metadata
36 |     self.message = message
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:47:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
45 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
46 |   /// metadata.
47 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
48 |
49 |   /// A sequence of messages received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:59:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
57 |   ///   - metadata: Metadata received from the client.
58 |   ///   - messages: A sequence of messages received from the client.
59 |   public init(metadata: Metadata, messages: RPCAsyncSequence<Message, any Error>) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
60 |     self.metadata = metadata
61 |     self.messages = messages
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:80:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 78 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 79 |     /// which may be sent.
 80 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 81 |
 82 |     /// The message to send to the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:92:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 90 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 91 |     /// which may be sent.
 92 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 93 |
 94 |     /// Create a new single client request.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:104:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
102 |     public init(
103 |       message: Message,
104 |       metadata: Metadata = [:],
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
105 |       trailingMetadata: Metadata = [:]
106 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:105:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
103 |       message: Message,
104 |       metadata: Metadata = [:],
105 |       trailingMetadata: Metadata = [:]
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
106 |     ) {
107 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:177:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
175 |   public struct Contents: Sendable {
176 |     /// Metadata to send to the client at the beginning of the response stream.
177 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
178 |
179 |     /// A closure which, when called, writes values into the provided writer and returns trailing
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:190:73: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
188 |     ///
189 |     /// gRPC will invoke this function at most once therefore it isn't required to be idempotent.
190 |     public var producer: @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
191 |
192 |     /// Create a ``Contents``.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:198:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
196 |     ///   - producer: A function which produces values
197 |     public init(
198 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
200 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:199:74: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
197 |     public init(
198 |       metadata: Metadata,
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
200 |     ) {
201 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:251:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
249 |
250 |   /// The metadata to be sent to the client at the start of the response.
251 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
252 |     get {
253 |       switch self.accepted {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:284:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 |   ///
283 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
284 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
285 |     switch self.accepted {
286 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:304:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
302 |   public init(
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
306 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:305:72: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
306 |   ) {
307 |     let contents = Contents(metadata: metadata, producer: producer)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:321:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
319 |
320 |   /// The metadata to be sent to the client at the start of the response.
321 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
322 |     get {
323 |       switch self.accepted {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[172/195] Compiling GRPCCore Coding.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/RPCRouter.swift:38:36: warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 36 | ///    want to be served.
 37 | @available(gRPCSwift 2.0, *)
 38 | public struct RPCRouter<Transport: ServerTransport>: Sendable {
    |                                    `- warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 39 |   @usableFromInline
 40 |   struct RPCHandler: Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:24:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
22 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
23 |   /// metadata.
24 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
25 |
26 |   /// The message received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:34:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
32 |   ///   - metadata: Metadata received from the client.
33 |   ///   - message: The message received from the client.
34 |   public init(metadata: Metadata, message: Message) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
35 |     self.metadata = metadata
36 |     self.message = message
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:47:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
45 |   /// The metadata contains gRPC and transport specific entries in addition to user-specified
46 |   /// metadata.
47 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
48 |
49 |   /// A sequence of messages received from the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerRequest.swift:59:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
57 |   ///   - metadata: Metadata received from the client.
58 |   ///   - messages: A sequence of messages received from the client.
59 |   public init(metadata: Metadata, messages: RPCAsyncSequence<Message, any Error>) {
   |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
60 |     self.metadata = metadata
61 |     self.messages = messages
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:80:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 78 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 79 |     /// which may be sent.
 80 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 81 |
 82 |     /// The message to send to the client.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:92:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 90 |     /// specific metadata. Note that transports may also impose limits in the amount of metadata
 91 |     /// which may be sent.
 92 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 93 |
 94 |     /// Create a new single client request.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:104:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
102 |     public init(
103 |       message: Message,
104 |       metadata: Metadata = [:],
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
105 |       trailingMetadata: Metadata = [:]
106 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:105:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
103 |       message: Message,
104 |       metadata: Metadata = [:],
105 |       trailingMetadata: Metadata = [:]
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
106 |     ) {
107 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:177:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
175 |   public struct Contents: Sendable {
176 |     /// Metadata to send to the client at the beginning of the response stream.
177 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
178 |
179 |     /// A closure which, when called, writes values into the provided writer and returns trailing
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:190:73: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
188 |     ///
189 |     /// gRPC will invoke this function at most once therefore it isn't required to be idempotent.
190 |     public var producer: @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
191 |
192 |     /// Create a ``Contents``.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:198:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
196 |     ///   - producer: A function which produces values
197 |     public init(
198 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
200 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:199:74: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
197 |     public init(
198 |       metadata: Metadata,
199 |       producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
200 |     ) {
201 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:232:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
230 |   ///   - message: The response message to send to the client.
231 |   ///   - trailingMetadata: Metadata to send to the client at the end of the response.
232 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
233 |     let contents = Contents(
234 |       message: message,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:251:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
249 |
250 |   /// The metadata to be sent to the client at the start of the response.
251 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
252 |     get {
253 |       switch self.accepted {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:284:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 |   ///
283 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
284 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
285 |     switch self.accepted {
286 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:304:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
302 |   public init(
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
306 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:305:72: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
303 |     of messageType: Message.Type = Message.self,
304 |     metadata: Metadata = [:],
305 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Metadata
    |                                                                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
306 |   ) {
307 |     let contents = Contents(metadata: metadata, producer: producer)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/ServerResponse.swift:321:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
319 |
320 |   /// The metadata to be sent to the client at the start of the response.
321 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
322 |     get {
323 |       switch self.accepted {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[173/195] Compiling GRPCCore CallOptions.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:40:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
38 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
39 |   /// be sent.
40 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
41 |
42 |   /// The message to send to the server.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:52:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
50 |   public init(
51 |     message: Message,
52 |     metadata: Metadata = [:]
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
53 |   ) {
54 |     self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:74:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
72 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
73 |   /// be sent.
74 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
75 |
76 |   /// A closure which, when called, writes messages in the writer.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:92:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
90 |   public init(
91 |     of messageType: Message.Type = Message.self,
92 |     metadata: Metadata = [:],
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
93 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Void
94 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:78:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 76 |     /// The metadata may contain transport-specific information in addition to any application
 77 |     /// level metadata provided by the service.
 78 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 79 |
 80 |     /// The response message received from the server, or an error of the RPC failed with a
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:88:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 86 |     /// The metadata may contain transport-specific information in addition to any application
 87 |     /// level metadata provided by the service.
 88 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 89 |
 90 |     /// Creates a `Contents`.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:97:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 95 |     ///   - trailingMetadata: Metadata received from the server at the end of the response.
 96 |     public init(
 97 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:99:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 97 |       metadata: Metadata,
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
100 |     ) {
101 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:112:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
110 |     ///   - error: Error received from the server.
111 |     public init(
112 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
113 |       error: RPCError
114 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:209:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |     /// The metadata may contain transport-specific information in addition to any application
208 |     /// level metadata provided by the service.
209 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
210 |
211 |     /// A sequence of stream parts received from the server ending with metadata if the RPC
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:224:29: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
222 |       case message(Message)
223 |       /// Metadata. Must be the final value of the sequence unless the stream throws an error.
224 |       case trailingMetadata(Metadata)
    |                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
225 |     }
226 |
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:233:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
231 |     ///   - bodyParts: An `AsyncSequence` of parts received from the server.
232 |     public init(
233 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
234 |       bodyParts: RPCAsyncSequence<BodyPart, any Error>
235 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:282:70: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
280 |   ///   - metadata: Metadata received from the server at the beginning of the response.
281 |   ///   - error: An error describing why the RPC failed.
282 |   public init(of messageType: Message.Type = Message.self, metadata: Metadata, error: RPCError) {
    |                                                                      `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
283 |     let contents = Contents(metadata: metadata, error: error)
284 |     self.accepted = .success(contents)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:299:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
297 |   ///
298 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
299 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
300 |     switch self.accepted {
301 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:320:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 |   ///
319 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
320 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
321 |     switch self.accepted {
322 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:340:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
338 |   public init(
339 |     of messageType: Message.Type = Message.self,
340 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
341 |     bodyParts: RPCAsyncSequence<Contents.BodyPart, any Error>
342 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:359:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
357 |   ///
358 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
359 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
360 |     switch self.accepted {
361 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct HedgingExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:565:60: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
563 |   @usableFromInline
564 |   enum AttemptResult: Sendable {
565 |     case unusableResponse(StreamingClientResponse<Output>, Metadata.RetryPushback?)
    |                                                            `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
566 |     case usableResponse(Result<R, any Error>)
567 |     case noStreamAvailable(any Error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct OneShotExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:21:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |   @usableFromInline
 20 |   struct RetryExecutor<
 21 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |     Input: Sendable,
 23 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:210:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
208 |       RPCWriter<RPCRequestPart<Bytes>>.Closable
209 |     >,
210 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
211 |     retryStream: BroadcastAsyncSequence<Input>,
212 |     method: MethodDescriptor,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[174/195] Compiling GRPCCore ClientContext.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:40:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
38 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
39 |   /// be sent.
40 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
41 |
42 |   /// The message to send to the server.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:52:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
50 |   public init(
51 |     message: Message,
52 |     metadata: Metadata = [:]
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
53 |   ) {
54 |     self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:74:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
72 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
73 |   /// be sent.
74 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
75 |
76 |   /// A closure which, when called, writes messages in the writer.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:92:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
90 |   public init(
91 |     of messageType: Message.Type = Message.self,
92 |     metadata: Metadata = [:],
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
93 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Void
94 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:78:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 76 |     /// The metadata may contain transport-specific information in addition to any application
 77 |     /// level metadata provided by the service.
 78 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 79 |
 80 |     /// The response message received from the server, or an error of the RPC failed with a
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:88:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 86 |     /// The metadata may contain transport-specific information in addition to any application
 87 |     /// level metadata provided by the service.
 88 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 89 |
 90 |     /// Creates a `Contents`.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:97:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 95 |     ///   - trailingMetadata: Metadata received from the server at the end of the response.
 96 |     public init(
 97 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:99:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 97 |       metadata: Metadata,
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
100 |     ) {
101 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:112:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
110 |     ///   - error: Error received from the server.
111 |     public init(
112 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
113 |       error: RPCError
114 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:209:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |     /// The metadata may contain transport-specific information in addition to any application
208 |     /// level metadata provided by the service.
209 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
210 |
211 |     /// A sequence of stream parts received from the server ending with metadata if the RPC
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:224:29: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
222 |       case message(Message)
223 |       /// Metadata. Must be the final value of the sequence unless the stream throws an error.
224 |       case trailingMetadata(Metadata)
    |                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
225 |     }
226 |
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:233:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
231 |     ///   - bodyParts: An `AsyncSequence` of parts received from the server.
232 |     public init(
233 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
234 |       bodyParts: RPCAsyncSequence<BodyPart, any Error>
235 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:282:70: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
280 |   ///   - metadata: Metadata received from the server at the beginning of the response.
281 |   ///   - error: An error describing why the RPC failed.
282 |   public init(of messageType: Message.Type = Message.self, metadata: Metadata, error: RPCError) {
    |                                                                      `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
283 |     let contents = Contents(metadata: metadata, error: error)
284 |     self.accepted = .success(contents)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:299:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
297 |   ///
298 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
299 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
300 |     switch self.accepted {
301 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:320:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 |   ///
319 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
320 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
321 |     switch self.accepted {
322 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:340:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
338 |   public init(
339 |     of messageType: Message.Type = Message.self,
340 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
341 |     bodyParts: RPCAsyncSequence<Contents.BodyPart, any Error>
342 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:359:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
357 |   ///
358 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
359 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
360 |     switch self.accepted {
361 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct HedgingExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:565:60: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
563 |   @usableFromInline
564 |   enum AttemptResult: Sendable {
565 |     case unusableResponse(StreamingClientResponse<Output>, Metadata.RetryPushback?)
    |                                                            `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
566 |     case usableResponse(Result<R, any Error>)
567 |     case noStreamAvailable(any Error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct OneShotExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:21:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |   @usableFromInline
 20 |   struct RetryExecutor<
 21 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |     Input: Sendable,
 23 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:210:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
208 |       RPCWriter<RPCRequestPart<Bytes>>.Closable
209 |     >,
210 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
211 |     retryStream: BroadcastAsyncSequence<Input>,
212 |     method: MethodDescriptor,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[175/195] Compiling GRPCCore ClientInterceptor.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:40:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
38 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
39 |   /// be sent.
40 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
41 |
42 |   /// The message to send to the server.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:52:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
50 |   public init(
51 |     message: Message,
52 |     metadata: Metadata = [:]
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
53 |   ) {
54 |     self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:74:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
72 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
73 |   /// be sent.
74 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
75 |
76 |   /// A closure which, when called, writes messages in the writer.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:92:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
90 |   public init(
91 |     of messageType: Message.Type = Message.self,
92 |     metadata: Metadata = [:],
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
93 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Void
94 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:78:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 76 |     /// The metadata may contain transport-specific information in addition to any application
 77 |     /// level metadata provided by the service.
 78 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 79 |
 80 |     /// The response message received from the server, or an error of the RPC failed with a
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:88:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 86 |     /// The metadata may contain transport-specific information in addition to any application
 87 |     /// level metadata provided by the service.
 88 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 89 |
 90 |     /// Creates a `Contents`.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:97:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 95 |     ///   - trailingMetadata: Metadata received from the server at the end of the response.
 96 |     public init(
 97 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:99:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 97 |       metadata: Metadata,
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
100 |     ) {
101 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:112:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
110 |     ///   - error: Error received from the server.
111 |     public init(
112 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
113 |       error: RPCError
114 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:209:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |     /// The metadata may contain transport-specific information in addition to any application
208 |     /// level metadata provided by the service.
209 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
210 |
211 |     /// A sequence of stream parts received from the server ending with metadata if the RPC
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:224:29: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
222 |       case message(Message)
223 |       /// Metadata. Must be the final value of the sequence unless the stream throws an error.
224 |       case trailingMetadata(Metadata)
    |                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
225 |     }
226 |
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:233:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
231 |     ///   - bodyParts: An `AsyncSequence` of parts received from the server.
232 |     public init(
233 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
234 |       bodyParts: RPCAsyncSequence<BodyPart, any Error>
235 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:282:70: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
280 |   ///   - metadata: Metadata received from the server at the beginning of the response.
281 |   ///   - error: An error describing why the RPC failed.
282 |   public init(of messageType: Message.Type = Message.self, metadata: Metadata, error: RPCError) {
    |                                                                      `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
283 |     let contents = Contents(metadata: metadata, error: error)
284 |     self.accepted = .success(contents)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:299:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
297 |   ///
298 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
299 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
300 |     switch self.accepted {
301 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:320:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 |   ///
319 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
320 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
321 |     switch self.accepted {
322 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:340:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
338 |   public init(
339 |     of messageType: Message.Type = Message.self,
340 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
341 |     bodyParts: RPCAsyncSequence<Contents.BodyPart, any Error>
342 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:359:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
357 |   ///
358 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
359 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
360 |     switch self.accepted {
361 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct HedgingExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:565:60: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
563 |   @usableFromInline
564 |   enum AttemptResult: Sendable {
565 |     case unusableResponse(StreamingClientResponse<Output>, Metadata.RetryPushback?)
    |                                                            `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
566 |     case usableResponse(Result<R, any Error>)
567 |     case noStreamAvailable(any Error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct OneShotExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:21:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |   @usableFromInline
 20 |   struct RetryExecutor<
 21 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |     Input: Sendable,
 23 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:210:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
208 |       RPCWriter<RPCRequestPart<Bytes>>.Closable
209 |     >,
210 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
211 |     retryStream: BroadcastAsyncSequence<Input>,
212 |     method: MethodDescriptor,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[176/195] Compiling GRPCCore ClientRequest.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:40:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
38 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
39 |   /// be sent.
40 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
41 |
42 |   /// The message to send to the server.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:52:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
50 |   public init(
51 |     message: Message,
52 |     metadata: Metadata = [:]
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
53 |   ) {
54 |     self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:74:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
72 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
73 |   /// be sent.
74 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
75 |
76 |   /// A closure which, when called, writes messages in the writer.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:92:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
90 |   public init(
91 |     of messageType: Message.Type = Message.self,
92 |     metadata: Metadata = [:],
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
93 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Void
94 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:78:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 76 |     /// The metadata may contain transport-specific information in addition to any application
 77 |     /// level metadata provided by the service.
 78 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 79 |
 80 |     /// The response message received from the server, or an error of the RPC failed with a
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:88:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 86 |     /// The metadata may contain transport-specific information in addition to any application
 87 |     /// level metadata provided by the service.
 88 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 89 |
 90 |     /// Creates a `Contents`.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:97:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 95 |     ///   - trailingMetadata: Metadata received from the server at the end of the response.
 96 |     public init(
 97 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:99:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 97 |       metadata: Metadata,
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
100 |     ) {
101 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:112:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
110 |     ///   - error: Error received from the server.
111 |     public init(
112 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
113 |       error: RPCError
114 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:209:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |     /// The metadata may contain transport-specific information in addition to any application
208 |     /// level metadata provided by the service.
209 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
210 |
211 |     /// A sequence of stream parts received from the server ending with metadata if the RPC
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:224:29: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
222 |       case message(Message)
223 |       /// Metadata. Must be the final value of the sequence unless the stream throws an error.
224 |       case trailingMetadata(Metadata)
    |                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
225 |     }
226 |
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:233:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
231 |     ///   - bodyParts: An `AsyncSequence` of parts received from the server.
232 |     public init(
233 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
234 |       bodyParts: RPCAsyncSequence<BodyPart, any Error>
235 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:282:70: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
280 |   ///   - metadata: Metadata received from the server at the beginning of the response.
281 |   ///   - error: An error describing why the RPC failed.
282 |   public init(of messageType: Message.Type = Message.self, metadata: Metadata, error: RPCError) {
    |                                                                      `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
283 |     let contents = Contents(metadata: metadata, error: error)
284 |     self.accepted = .success(contents)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:299:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
297 |   ///
298 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
299 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
300 |     switch self.accepted {
301 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:320:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 |   ///
319 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
320 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
321 |     switch self.accepted {
322 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:340:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
338 |   public init(
339 |     of messageType: Message.Type = Message.self,
340 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
341 |     bodyParts: RPCAsyncSequence<Contents.BodyPart, any Error>
342 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:359:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
357 |   ///
358 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
359 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
360 |     switch self.accepted {
361 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct HedgingExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:565:60: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
563 |   @usableFromInline
564 |   enum AttemptResult: Sendable {
565 |     case unusableResponse(StreamingClientResponse<Output>, Metadata.RetryPushback?)
    |                                                            `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
566 |     case usableResponse(Result<R, any Error>)
567 |     case noStreamAvailable(any Error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct OneShotExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:21:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |   @usableFromInline
 20 |   struct RetryExecutor<
 21 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |     Input: Sendable,
 23 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:210:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
208 |       RPCWriter<RPCRequestPart<Bytes>>.Closable
209 |     >,
210 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
211 |     retryStream: BroadcastAsyncSequence<Input>,
212 |     method: MethodDescriptor,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[177/195] Compiling GRPCCore ClientResponse.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:40:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
38 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
39 |   /// be sent.
40 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
41 |
42 |   /// The message to send to the server.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:52:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
50 |   public init(
51 |     message: Message,
52 |     metadata: Metadata = [:]
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
53 |   ) {
54 |     self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:74:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
72 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
73 |   /// be sent.
74 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
75 |
76 |   /// A closure which, when called, writes messages in the writer.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:92:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
90 |   public init(
91 |     of messageType: Message.Type = Message.self,
92 |     metadata: Metadata = [:],
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
93 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Void
94 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:78:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 76 |     /// The metadata may contain transport-specific information in addition to any application
 77 |     /// level metadata provided by the service.
 78 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 79 |
 80 |     /// The response message received from the server, or an error of the RPC failed with a
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:88:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 86 |     /// The metadata may contain transport-specific information in addition to any application
 87 |     /// level metadata provided by the service.
 88 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 89 |
 90 |     /// Creates a `Contents`.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:97:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 95 |     ///   - trailingMetadata: Metadata received from the server at the end of the response.
 96 |     public init(
 97 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:99:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 97 |       metadata: Metadata,
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
100 |     ) {
101 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:112:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
110 |     ///   - error: Error received from the server.
111 |     public init(
112 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
113 |       error: RPCError
114 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:209:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |     /// The metadata may contain transport-specific information in addition to any application
208 |     /// level metadata provided by the service.
209 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
210 |
211 |     /// A sequence of stream parts received from the server ending with metadata if the RPC
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:224:29: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
222 |       case message(Message)
223 |       /// Metadata. Must be the final value of the sequence unless the stream throws an error.
224 |       case trailingMetadata(Metadata)
    |                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
225 |     }
226 |
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:233:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
231 |     ///   - bodyParts: An `AsyncSequence` of parts received from the server.
232 |     public init(
233 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
234 |       bodyParts: RPCAsyncSequence<BodyPart, any Error>
235 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:282:70: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
280 |   ///   - metadata: Metadata received from the server at the beginning of the response.
281 |   ///   - error: An error describing why the RPC failed.
282 |   public init(of messageType: Message.Type = Message.self, metadata: Metadata, error: RPCError) {
    |                                                                      `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
283 |     let contents = Contents(metadata: metadata, error: error)
284 |     self.accepted = .success(contents)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:299:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
297 |   ///
298 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
299 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
300 |     switch self.accepted {
301 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:320:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 |   ///
319 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
320 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
321 |     switch self.accepted {
322 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:340:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
338 |   public init(
339 |     of messageType: Message.Type = Message.self,
340 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
341 |     bodyParts: RPCAsyncSequence<Contents.BodyPart, any Error>
342 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:359:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
357 |   ///
358 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
359 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
360 |     switch self.accepted {
361 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct HedgingExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:565:60: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
563 |   @usableFromInline
564 |   enum AttemptResult: Sendable {
565 |     case unusableResponse(StreamingClientResponse<Output>, Metadata.RetryPushback?)
    |                                                            `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
566 |     case usableResponse(Result<R, any Error>)
567 |     case noStreamAvailable(any Error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct OneShotExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:21:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |   @usableFromInline
 20 |   struct RetryExecutor<
 21 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |     Input: Sendable,
 23 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:210:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
208 |       RPCWriter<RPCRequestPart<Bytes>>.Closable
209 |     >,
210 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
211 |     retryStream: BroadcastAsyncSequence<Input>,
212 |     method: MethodDescriptor,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[178/195] Compiling GRPCCore ClientRPCExecutor+HedgingExecutor.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:40:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
38 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
39 |   /// be sent.
40 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
41 |
42 |   /// The message to send to the server.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:52:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
50 |   public init(
51 |     message: Message,
52 |     metadata: Metadata = [:]
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
53 |   ) {
54 |     self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:74:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
72 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
73 |   /// be sent.
74 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
75 |
76 |   /// A closure which, when called, writes messages in the writer.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:92:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
90 |   public init(
91 |     of messageType: Message.Type = Message.self,
92 |     metadata: Metadata = [:],
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
93 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Void
94 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:78:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 76 |     /// The metadata may contain transport-specific information in addition to any application
 77 |     /// level metadata provided by the service.
 78 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 79 |
 80 |     /// The response message received from the server, or an error of the RPC failed with a
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:88:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 86 |     /// The metadata may contain transport-specific information in addition to any application
 87 |     /// level metadata provided by the service.
 88 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 89 |
 90 |     /// Creates a `Contents`.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:97:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 95 |     ///   - trailingMetadata: Metadata received from the server at the end of the response.
 96 |     public init(
 97 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:99:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 97 |       metadata: Metadata,
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
100 |     ) {
101 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:112:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
110 |     ///   - error: Error received from the server.
111 |     public init(
112 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
113 |       error: RPCError
114 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:209:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |     /// The metadata may contain transport-specific information in addition to any application
208 |     /// level metadata provided by the service.
209 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
210 |
211 |     /// A sequence of stream parts received from the server ending with metadata if the RPC
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:224:29: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
222 |       case message(Message)
223 |       /// Metadata. Must be the final value of the sequence unless the stream throws an error.
224 |       case trailingMetadata(Metadata)
    |                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
225 |     }
226 |
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:233:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
231 |     ///   - bodyParts: An `AsyncSequence` of parts received from the server.
232 |     public init(
233 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
234 |       bodyParts: RPCAsyncSequence<BodyPart, any Error>
235 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:282:70: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
280 |   ///   - metadata: Metadata received from the server at the beginning of the response.
281 |   ///   - error: An error describing why the RPC failed.
282 |   public init(of messageType: Message.Type = Message.self, metadata: Metadata, error: RPCError) {
    |                                                                      `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
283 |     let contents = Contents(metadata: metadata, error: error)
284 |     self.accepted = .success(contents)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:299:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
297 |   ///
298 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
299 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
300 |     switch self.accepted {
301 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:320:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 |   ///
319 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
320 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
321 |     switch self.accepted {
322 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:340:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
338 |   public init(
339 |     of messageType: Message.Type = Message.self,
340 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
341 |     bodyParts: RPCAsyncSequence<Contents.BodyPart, any Error>
342 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:359:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
357 |   ///
358 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
359 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
360 |     switch self.accepted {
361 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct HedgingExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:565:60: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
563 |   @usableFromInline
564 |   enum AttemptResult: Sendable {
565 |     case unusableResponse(StreamingClientResponse<Output>, Metadata.RetryPushback?)
    |                                                            `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
566 |     case usableResponse(Result<R, any Error>)
567 |     case noStreamAvailable(any Error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct OneShotExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:21:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |   @usableFromInline
 20 |   struct RetryExecutor<
 21 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |     Input: Sendable,
 23 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:210:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
208 |       RPCWriter<RPCRequestPart<Bytes>>.Closable
209 |     >,
210 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
211 |     retryStream: BroadcastAsyncSequence<Input>,
212 |     method: MethodDescriptor,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[179/195] Compiling GRPCCore ClientRPCExecutor+OneShotExecutor.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:40:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
38 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
39 |   /// be sent.
40 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
41 |
42 |   /// The message to send to the server.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:52:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
50 |   public init(
51 |     message: Message,
52 |     metadata: Metadata = [:]
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
53 |   ) {
54 |     self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:74:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
72 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
73 |   /// be sent.
74 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
75 |
76 |   /// A closure which, when called, writes messages in the writer.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:92:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
90 |   public init(
91 |     of messageType: Message.Type = Message.self,
92 |     metadata: Metadata = [:],
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
93 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Void
94 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:78:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 76 |     /// The metadata may contain transport-specific information in addition to any application
 77 |     /// level metadata provided by the service.
 78 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 79 |
 80 |     /// The response message received from the server, or an error of the RPC failed with a
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:88:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 86 |     /// The metadata may contain transport-specific information in addition to any application
 87 |     /// level metadata provided by the service.
 88 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 89 |
 90 |     /// Creates a `Contents`.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:97:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 95 |     ///   - trailingMetadata: Metadata received from the server at the end of the response.
 96 |     public init(
 97 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:99:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 97 |       metadata: Metadata,
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
100 |     ) {
101 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:112:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
110 |     ///   - error: Error received from the server.
111 |     public init(
112 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
113 |       error: RPCError
114 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:209:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |     /// The metadata may contain transport-specific information in addition to any application
208 |     /// level metadata provided by the service.
209 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
210 |
211 |     /// A sequence of stream parts received from the server ending with metadata if the RPC
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:224:29: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
222 |       case message(Message)
223 |       /// Metadata. Must be the final value of the sequence unless the stream throws an error.
224 |       case trailingMetadata(Metadata)
    |                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
225 |     }
226 |
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:233:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
231 |     ///   - bodyParts: An `AsyncSequence` of parts received from the server.
232 |     public init(
233 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
234 |       bodyParts: RPCAsyncSequence<BodyPart, any Error>
235 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:282:70: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
280 |   ///   - metadata: Metadata received from the server at the beginning of the response.
281 |   ///   - error: An error describing why the RPC failed.
282 |   public init(of messageType: Message.Type = Message.self, metadata: Metadata, error: RPCError) {
    |                                                                      `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
283 |     let contents = Contents(metadata: metadata, error: error)
284 |     self.accepted = .success(contents)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:299:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
297 |   ///
298 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
299 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
300 |     switch self.accepted {
301 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:320:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 |   ///
319 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
320 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
321 |     switch self.accepted {
322 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:340:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
338 |   public init(
339 |     of messageType: Message.Type = Message.self,
340 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
341 |     bodyParts: RPCAsyncSequence<Contents.BodyPart, any Error>
342 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:359:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
357 |   ///
358 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
359 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
360 |     switch self.accepted {
361 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct HedgingExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:565:60: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
563 |   @usableFromInline
564 |   enum AttemptResult: Sendable {
565 |     case unusableResponse(StreamingClientResponse<Output>, Metadata.RetryPushback?)
    |                                                            `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
566 |     case usableResponse(Result<R, any Error>)
567 |     case noStreamAvailable(any Error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct OneShotExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:21:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |   @usableFromInline
 20 |   struct RetryExecutor<
 21 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |     Input: Sendable,
 23 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:210:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
208 |       RPCWriter<RPCRequestPart<Bytes>>.Closable
209 |     >,
210 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
211 |     retryStream: BroadcastAsyncSequence<Input>,
212 |     method: MethodDescriptor,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[180/195] Compiling GRPCCore ClientRPCExecutor+RetryExecutor.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:40:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
38 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
39 |   /// be sent.
40 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
41 |
42 |   /// The message to send to the server.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:52:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
50 |   public init(
51 |     message: Message,
52 |     metadata: Metadata = [:]
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
53 |   ) {
54 |     self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:74:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
72 |   /// metadata. Note that transports may also impose limits in the amount of metadata which may
73 |   /// be sent.
74 |   public var metadata: Metadata
   |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
75 |
76 |   /// A closure which, when called, writes messages in the writer.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientRequest.swift:92:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
90 |   public init(
91 |     of messageType: Message.Type = Message.self,
92 |     metadata: Metadata = [:],
   |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
93 |     producer: @escaping @Sendable (RPCWriter<Message>) async throws -> Void
94 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:78:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 76 |     /// The metadata may contain transport-specific information in addition to any application
 77 |     /// level metadata provided by the service.
 78 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 79 |
 80 |     /// The response message received from the server, or an error of the RPC failed with a
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:88:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 86 |     /// The metadata may contain transport-specific information in addition to any application
 87 |     /// level metadata provided by the service.
 88 |     public var trailingMetadata: Metadata
    |                                  `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 89 |
 90 |     /// Creates a `Contents`.
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:97:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 95 |     ///   - trailingMetadata: Metadata received from the server at the end of the response.
 96 |     public init(
 97 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:99:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 97 |       metadata: Metadata,
 98 |       message: Message,
 99 |       trailingMetadata: Metadata
    |                         `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
100 |     ) {
101 |       self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:112:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
110 |     ///   - error: Error received from the server.
111 |     public init(
112 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
113 |       error: RPCError
114 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:209:26: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |     /// The metadata may contain transport-specific information in addition to any application
208 |     /// level metadata provided by the service.
209 |     public var metadata: Metadata
    |                          `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
210 |
211 |     /// A sequence of stream parts received from the server ending with metadata if the RPC
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:224:29: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
222 |       case message(Message)
223 |       /// Metadata. Must be the final value of the sequence unless the stream throws an error.
224 |       case trailingMetadata(Metadata)
    |                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
225 |     }
226 |
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:233:17: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
231 |     ///   - bodyParts: An `AsyncSequence` of parts received from the server.
232 |     public init(
233 |       metadata: Metadata,
    |                 `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
234 |       bodyParts: RPCAsyncSequence<BodyPart, any Error>
235 |     ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:43: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                           `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:267:77: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
265 |   ///   - message: The response message received from the server.
266 |   ///   - trailingMetadata: Metadata received from the server at the end of the response.
267 |   public init(message: Message, metadata: Metadata = [:], trailingMetadata: Metadata = [:]) {
    |                                                                             `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
268 |     let contents = Contents(
269 |       metadata: metadata,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:282:70: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
280 |   ///   - metadata: Metadata received from the server at the beginning of the response.
281 |   ///   - error: An error describing why the RPC failed.
282 |   public init(of messageType: Message.Type = Message.self, metadata: Metadata, error: RPCError) {
    |                                                                      `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
283 |     let contents = Contents(metadata: metadata, error: error)
284 |     self.accepted = .success(contents)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:299:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
297 |   ///
298 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
299 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
300 |     switch self.accepted {
301 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:320:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 |   ///
319 |   /// Unlike ``metadata``, for rejected RPCs the metadata returned may contain values.
320 |   public var trailingMetadata: Metadata {
    |                                `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
321 |     switch self.accepted {
322 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:340:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
338 |   public init(
339 |     of messageType: Message.Type = Message.self,
340 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
341 |     bodyParts: RPCAsyncSequence<Contents.BodyPart, any Error>
342 |   ) {
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/ClientResponse.swift:359:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
357 |   ///
358 |   /// For rejected RPCs (in other words, where ``accepted`` is `failure`) the metadata is empty.
359 |   public var metadata: Metadata {
    |                        `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
360 |     switch self.accepted {
361 |     case let .success(contents):
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct HedgingExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift:565:60: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
563 |   @usableFromInline
564 |   enum AttemptResult: Sendable {
565 |     case unusableResponse(StreamingClientResponse<Output>, Metadata.RetryPushback?)
    |                                                            `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
566 |     case usableResponse(Result<R, any Error>)
567 |     case noStreamAvailable(any Error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift:23:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 21 |   @usableFromInline
 22 |   struct OneShotExecutor<
 23 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 24 |     Input: Sendable,
 25 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:21:16: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |   @usableFromInline
 20 |   struct RetryExecutor<
 21 |     Transport: ClientTransport,
    |                `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |     Input: Sendable,
 23 |     Output: Sendable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift:210:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
208 |       RPCWriter<RPCRequestPart<Bytes>>.Closable
209 |     >,
210 |     metadata: Metadata,
    |               `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
211 |     retryStream: BroadcastAsyncSequence<Input>,
212 |     method: MethodDescriptor,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[181/195] Compiling GRPCCore CompressionAlgorithm.swift
[182/195] Compiling GRPCCore GRPCContiguousBytes.swift
[183/195] Compiling GRPCCore MethodConfig.swift
[184/195] Compiling GRPCCore ServiceConfig.swift
[185/195] Compiling GRPCCore GRPCClient.swift
[186/195] Compiling GRPCCore GRPCServer.swift
[187/195] Compiling GRPCCore Base64.swift
[188/195] Compiling GRPCCore UnsafeTransfer.swift
[189/195] Compiling GRPCCore RuntimeError.swift
[190/195] Compiling GRPCCore ServiceDescriptor.swift
[191/195] Compiling GRPCCore Status.swift
[192/195] Compiling GRPCCore AsyncSequenceOfOne.swift
[193/195] Compiling GRPCCore BroadcastAsyncSequence+RPCWriter.swift
[194/195] Compiling GRPCCore BroadcastAsyncSequence.swift
[195/195] Compiling GRPCCore GRPCAsyncThrowingStream.swift
[197/201] Compiling GRPCInProcessTransport Syscalls.swift
[198/201] Compiling GRPCInProcessTransport InProcessTransport.swift
[199/201] Emitting module GRPCInProcessTransport
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:44:30: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 42 |     private enum State: Sendable {
 43 |       struct UnconnectedState {
 44 |         var serverTransport: InProcessTransport.Server
    |                              `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 45 |         var pendingStreams: [AsyncStream<Void>.Continuation]
 46 |
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:47:31: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 45 |         var pendingStreams: [AsyncStream<Void>.Continuation]
 46 |
 47 |         init(serverTransport: InProcessTransport.Server) {
    |                               `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 48 |           self.serverTransport = serverTransport
 49 |           self.pendingStreams = []
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:54:30: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 52 |
 53 |       struct ConnectedState {
 54 |         var serverTransport: InProcessTransport.Server
    |                              `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 55 |         var nextStreamID: Int
 56 |         var openStreams:
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:117:15: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
115 |     ///   - peer: The system's PID for the running client and server.
116 |     package init(
117 |       server: InProcessTransport.Server,
    |               `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
118 |       serviceConfig: ServiceConfig = ServiceConfig(),
119 |       peer: String
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:39:30: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 37 |   ///
 38 |   /// - SeeAlso: `ClientTransport`
 39 |   public final class Client: ClientTransport {
    |                              `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 40 |     public typealias Bytes = [UInt8]
 41 |
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:21:11: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |
 20 | @available(gRPCSwift 2.0, *)
 21 | extension InProcessTransport {
    |           `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |   /// An in-process implementation of a `ClientTransport`.
 23 |   ///
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Server.swift:32:30: warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 30 |   ///
 31 |   /// - SeeAlso: `ClientTransport`
 32 |   public final class Server: ServerTransport, Sendable {
    |                              `- warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 33 |     public typealias Bytes = [UInt8]
 34 |
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Server.swift:21:11: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |
 20 | @available(gRPCSwift 2.0, *)
 21 | extension InProcessTransport {
    |           `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |   /// An in-process implementation of a `ServerTransport`.
 23 |   ///
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[200/201] Compiling GRPCInProcessTransport InProcessTransport+Client.swift
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:44:30: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 42 |     private enum State: Sendable {
 43 |       struct UnconnectedState {
 44 |         var serverTransport: InProcessTransport.Server
    |                              `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 45 |         var pendingStreams: [AsyncStream<Void>.Continuation]
 46 |
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:47:31: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 45 |         var pendingStreams: [AsyncStream<Void>.Continuation]
 46 |
 47 |         init(serverTransport: InProcessTransport.Server) {
    |                               `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 48 |           self.serverTransport = serverTransport
 49 |           self.pendingStreams = []
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:54:30: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 52 |
 53 |       struct ConnectedState {
 54 |         var serverTransport: InProcessTransport.Server
    |                              `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 55 |         var nextStreamID: Int
 56 |         var openStreams:
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:117:15: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
115 |     ///   - peer: The system's PID for the running client and server.
116 |     package init(
117 |       server: InProcessTransport.Server,
    |               `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
118 |       serviceConfig: ServiceConfig = ServiceConfig(),
119 |       peer: String
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:39:30: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 37 |   ///
 38 |   /// - SeeAlso: `ClientTransport`
 39 |   public final class Client: ClientTransport {
    |                              `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 40 |     public typealias Bytes = [UInt8]
 41 |
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Client.swift:21:11: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |
 20 | @available(gRPCSwift 2.0, *)
 21 | extension InProcessTransport {
    |           `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |   /// An in-process implementation of a `ClientTransport`.
 23 |   ///
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[201/201] Compiling GRPCInProcessTransport InProcessTransport+Server.swift
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Server.swift:32:30: warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 30 |   ///
 31 |   /// - SeeAlso: `ClientTransport`
 32 |   public final class Server: ServerTransport, Sendable {
    |                              `- warning: 'ServerTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 33 |     public typealias Bytes = [UInt8]
 34 |
/host/spi-builder-workspace/Sources/GRPCInProcessTransport/InProcessTransport+Server.swift:21:11: warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 19 |
 20 | @available(gRPCSwift 2.0, *)
 21 | extension InProcessTransport {
    |           `- warning: 'InProcessTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
 22 |   /// An in-process implementation of a `ServerTransport`.
 23 |   ///
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Build complete! (101.90s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.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"
    }
  ],
  "manifest_display_name" : "grpc-swift",
  "name" : "grpc-swift",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "GRPCCore",
      "targets" : [
        "GRPCCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "GRPCCodeGen",
      "targets" : [
        "GRPCCodeGen"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "GRPCInProcessTransport",
      "targets" : [
        "GRPCInProcessTransport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "GRPCInProcessTransportTests",
      "module_type" : "SwiftTarget",
      "name" : "GRPCInProcessTransportTests",
      "path" : "Tests/GRPCInProcessTransportTests",
      "sources" : [
        "ClientServerWithMethods.swift",
        "InProcessClientTransportTests.swift",
        "InProcessServerTransportTests.swift",
        "InProcessTransportTests.swift",
        "Test Utilities/JSONSerializing.swift",
        "Test Utilities/XCTest+Utilities.swift"
      ],
      "target_dependencies" : [
        "GRPCInProcessTransport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GRPCInProcessTransport",
      "module_type" : "SwiftTarget",
      "name" : "GRPCInProcessTransport",
      "path" : "Sources/GRPCInProcessTransport",
      "product_memberships" : [
        "GRPCInProcessTransport"
      ],
      "sources" : [
        "InProcessTransport+Client.swift",
        "InProcessTransport+Server.swift",
        "InProcessTransport.swift",
        "Syscalls.swift"
      ],
      "target_dependencies" : [
        "GRPCCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GRPCCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "GRPCCoreTests",
      "path" : "Tests/GRPCCoreTests",
      "product_dependencies" : [
        "SwiftProtobuf"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/GRPCCoreTests/Configuration/Inputs",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Call/Client/ClientRequestTests.swift",
        "Call/Client/ClientResponseTests.swift",
        "Call/Client/Internal/ClientRPCExecutorTestSupport/ClientRPCExecutorTestHarness+ServerBehavior.swift",
        "Call/Client/Internal/ClientRPCExecutorTestSupport/ClientRPCExecutorTestHarness+Transport.swift",
        "Call/Client/Internal/ClientRPCExecutorTestSupport/ClientRPCExecutorTestHarness.swift",
        "Call/Client/Internal/ClientRPCExecutorTests+Hedging.swift",
        "Call/Client/Internal/ClientRPCExecutorTests+Retries.swift",
        "Call/Client/Internal/ClientRPCExecutorTests.swift",
        "Call/Client/RetryDelaySequenceTests.swift",
        "Call/ConditionalInterceptorTests.swift",
        "Call/Server/Internal/ServerCancellationManagerTests.swift",
        "Call/Server/Internal/ServerRPCExecutorTestSupport/ServerRPCExecutorTestHarness.swift",
        "Call/Server/Internal/ServerRPCExecutorTests.swift",
        "Call/Server/RPCRouterTests.swift",
        "Call/Server/ServerContextTests.swift",
        "Call/Server/ServerRequestTests.swift",
        "Call/Server/ServerResponseTests.swift",
        "Coding/CodingTests.swift",
        "Coding/CompressionAlgorithmTests.swift",
        "Configuration/Generated/code.pb.swift",
        "Configuration/Generated/rls.pb.swift",
        "Configuration/Generated/rls_config.pb.swift",
        "Configuration/Generated/service_config.pb.swift",
        "Configuration/MethodConfigCodingTests.swift",
        "Configuration/MethodConfigTests.swift",
        "Configuration/ServiceConfigCodingTests.swift",
        "GRPCClientTests.swift",
        "GRPCServerTests.swift",
        "Internal/Metadata+GRPCTests.swift",
        "Internal/MethodConfigsTests.swift",
        "Internal/Result+CatchingTests.swift",
        "MetadataTests.swift",
        "MethodDescriptorTests.swift",
        "RPCErrorTests.swift",
        "RPCPartsTests.swift",
        "RuntimeErrorTests.swift",
        "ServiceDescriptorTests.swift",
        "StatusTests.swift",
        "Streaming/Internal/AsyncSequenceOfOne.swift",
        "Streaming/Internal/BroadcastAsyncSequenceTests.swift",
        "Test Utilities/AsyncSequence+Utilities.swift",
        "Test Utilities/AtomicCounter.swift",
        "Test Utilities/Call/Client/ClientInterceptors.swift",
        "Test Utilities/Call/Server/ServerInterceptors.swift",
        "Test Utilities/Coding+Identity.swift",
        "Test Utilities/Coding+JSON.swift",
        "Test Utilities/RPCAsyncSequence+Utilities.swift",
        "Test Utilities/RPCWriter+Utilities.swift",
        "Test Utilities/Services/BinaryEcho.swift",
        "Test Utilities/Services/HelloWorld.swift",
        "Test Utilities/Transport/AnyTransport.swift",
        "Test Utilities/Transport/StreamCountingTransport.swift",
        "Test Utilities/Transport/ThrowingTransport.swift",
        "Test Utilities/XCTest+Utilities.swift",
        "TimeoutTests.swift",
        "Transport/RetryThrottleTests.swift"
      ],
      "target_dependencies" : [
        "GRPCCore",
        "GRPCInProcessTransport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GRPCCore",
      "module_type" : "SwiftTarget",
      "name" : "GRPCCore",
      "path" : "Sources/GRPCCore",
      "product_dependencies" : [
        "DequeModule"
      ],
      "product_memberships" : [
        "GRPCCore",
        "GRPCInProcessTransport"
      ],
      "sources" : [
        "Call/Client/CallOptions.swift",
        "Call/Client/ClientContext.swift",
        "Call/Client/ClientInterceptor.swift",
        "Call/Client/ClientRequest.swift",
        "Call/Client/ClientResponse.swift",
        "Call/Client/Internal/ClientRPCExecutor+HedgingExecutor.swift",
        "Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift",
        "Call/Client/Internal/ClientRPCExecutor+RetryExecutor.swift",
        "Call/Client/Internal/ClientRPCExecutor.swift",
        "Call/Client/Internal/ClientRequest+Convenience.swift",
        "Call/Client/Internal/ClientResponse+Convenience.swift",
        "Call/Client/Internal/ClientStreamExecutor.swift",
        "Call/Client/Internal/RetryDelaySequence.swift",
        "Call/ConditionalInterceptor.swift",
        "Call/Server/Internal/ServerCancellationManager.swift",
        "Call/Server/Internal/ServerRPCExecutor.swift",
        "Call/Server/RPCRouter.swift",
        "Call/Server/RegistrableRPCService.swift",
        "Call/Server/ServerContext+RPCCancellationHandle.swift",
        "Call/Server/ServerContext.swift",
        "Call/Server/ServerInterceptor.swift",
        "Call/Server/ServerRequest.swift",
        "Call/Server/ServerResponse.swift",
        "Coding/Coding.swift",
        "Coding/CompressionAlgorithm.swift",
        "Coding/GRPCContiguousBytes.swift",
        "Configuration/MethodConfig.swift",
        "Configuration/ServiceConfig.swift",
        "GRPCClient.swift",
        "GRPCServer.swift",
        "Internal/Base64.swift",
        "Internal/Concurrency Primitives/UnsafeTransfer.swift",
        "Internal/Metadata+GRPC.swift",
        "Internal/MethodConfigs.swift",
        "Internal/Result+Catching.swift",
        "Internal/String+Extensions.swift",
        "Internal/TaskGroup+CancellableTask.swift",
        "Metadata.swift",
        "MethodDescriptor.swift",
        "RPCError.swift",
        "RuntimeError.swift",
        "ServiceDescriptor.swift",
        "Status.swift",
        "Streaming/Internal/AsyncSequenceOfOne.swift",
        "Streaming/Internal/BroadcastAsyncSequence+RPCWriter.swift",
        "Streaming/Internal/BroadcastAsyncSequence.swift",
        "Streaming/Internal/GRPCAsyncThrowingStream.swift",
        "Streaming/Internal/RPCWriter+Map.swift",
        "Streaming/Internal/RPCWriter+MessageToRPCResponsePart.swift",
        "Streaming/Internal/RPCWriter+Serialize.swift",
        "Streaming/Internal/UncheckedAsyncIteratorSequence.swift",
        "Streaming/RPCAsyncSequence.swift",
        "Streaming/RPCWriter+Closable.swift",
        "Streaming/RPCWriter.swift",
        "Streaming/RPCWriterProtocol.swift",
        "Timeout.swift",
        "Transport/ClientTransport.swift",
        "Transport/RPCParts.swift",
        "Transport/RPCStream.swift",
        "Transport/RetryThrottle.swift",
        "Transport/ServerTransport.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GRPCCodeGenTests",
      "module_type" : "SwiftTarget",
      "name" : "GRPCCodeGenTests",
      "path" : "Tests/GRPCCodeGenTests",
      "sources" : [
        "Internal/Renderer/TextBasedRendererTests.swift",
        "Internal/StructuredSwift+ClientTests.swift",
        "Internal/StructuredSwift+ImportTests.swift",
        "Internal/StructuredSwift+MetadataTests.swift",
        "Internal/StructuredSwift+ServerTests.swift",
        "Internal/StructuredSwiftTestHelpers.swift",
        "Internal/Translator/ClientCodeTranslatorSnippetBasedTests.swift",
        "Internal/Translator/DocsTests.swift",
        "Internal/Translator/IDLToStructuredSwiftTranslatorSnippetBasedTests.swift",
        "Internal/Translator/ServerCodeTranslatorSnippetBasedTests.swift",
        "Internal/Translator/TestFunctions.swift",
        "Internal/Translator/TypealiasTranslatorSnippetBasedTests.swift"
      ],
      "target_dependencies" : [
        "GRPCCodeGen"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GRPCCodeGen",
      "module_type" : "SwiftTarget",
      "name" : "GRPCCodeGen",
      "path" : "Sources/GRPCCodeGen",
      "product_memberships" : [
        "GRPCCodeGen"
      ],
      "sources" : [
        "CodeGenError.swift",
        "CodeGenerationRequest.swift",
        "CodeGenerator.swift",
        "Internal/Namer.swift",
        "Internal/Renderer/RendererProtocol.swift",
        "Internal/Renderer/TextBasedRenderer.swift",
        "Internal/StructuredSwift+Client.swift",
        "Internal/StructuredSwift+Server.swift",
        "Internal/StructuredSwift+ServiceMetadata.swift",
        "Internal/StructuredSwiftRepresentation.swift",
        "Internal/Translator/ClientCodeTranslator.swift",
        "Internal/Translator/Docs.swift",
        "Internal/Translator/IDLToStructuredSwiftTranslator.swift",
        "Internal/Translator/MetadataTranslator.swift",
        "Internal/Translator/ServerCodeTranslator.swift",
        "Internal/TypeName.swift",
        "Internal/TypeUsage.swift",
        "SourceFile.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.