Build Information
Successful build of grpc-swift, reference 2.2.3 (adc18c
), with Swift 6.2 (beta) for Linux on 24 Jun 2025 08:50:34 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
316 | private let key: String
317 |
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:318:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
316 | private let key: String
317 |
318 | init(forKey key: String, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
319 | self.metadataIterator = metadata.makeIterator()
320 | self.key = key
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:334:27: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
332 |
333 | private let key: String
334 | private let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
335 |
336 | internal init(key: String, metadata: Metadata) {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:336:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
334 | private let metadata: Metadata
335 |
336 | internal init(key: String, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
337 | self.key = key
338 | self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:309:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
307 |
308 | @available(gRPCSwift 2.0, *)
309 | extension Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
310 | /// A sequence of metadata values for a given key.
311 | public struct Values: Sequence, Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:384:27: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
382 |
383 | private let key: String
384 | private let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
385 |
386 | internal init(key: String, metadata: Metadata) {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:386:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
384 | private let metadata: Metadata
385 |
386 | internal init(key: String, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
387 | self.key = key
388 | self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:357:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
355 |
356 | @available(gRPCSwift 2.0, *)
357 | extension Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
358 | /// A sequence of metadata string values for a given key.
359 | public struct StringValues: Sequence, Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:440:27: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
438 |
439 | private let key: String
440 | private let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
441 |
442 | internal init(key: String, metadata: Metadata) {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:442:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
440 | private let metadata: Metadata
441 |
442 | internal init(key: String, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
443 | self.key = key
444 | self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:407:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
405 |
406 | @available(gRPCSwift 2.0, *)
407 | extension Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
408 | /// A sequence of metadata binary values for a given key.
409 | public struct BinaryValues: Sequence, Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:469:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
467 |
468 | @available(gRPCSwift 2.0, *)
469 | extension Metadata: ExpressibleByDictionaryLiteral {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
470 | public init(dictionaryLiteral elements: (String, Value)...) {
471 | self.elements = elements.map { KeyValuePair(key: $0, value: $1) }
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:476:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
474 |
475 | @available(gRPCSwift 2.0, *)
476 | extension Metadata: ExpressibleByArrayLiteral {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
477 | public init(arrayLiteral elements: (String, Value)...) {
478 | self.elements = elements.map { KeyValuePair(key: $0, value: $1) }
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:483:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
481 |
482 | @available(gRPCSwift 2.0, *)
483 | extension Metadata.Value: ExpressibleByStringLiteral {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
484 | public init(stringLiteral value: StringLiteralType) {
485 | self = .string(value)
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:490:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
488 |
489 | @available(gRPCSwift 2.0, *)
490 | extension Metadata.Value: ExpressibleByStringInterpolation {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
491 | public init(stringInterpolation: DefaultStringInterpolation) {
492 | self = .string(String(stringInterpolation: stringInterpolation))
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:497:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
495 |
496 | @available(gRPCSwift 2.0, *)
497 | extension Metadata.Value: ExpressibleByArrayLiteral {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
498 | public typealias ArrayLiteralElement = UInt8
499 |
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:506:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
504 |
505 | @available(gRPCSwift 2.0, *)
506 | extension Metadata: CustomStringConvertible {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
507 | public var description: String {
508 | if self.isEmpty {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:519:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
517 |
518 | @available(gRPCSwift 2.0, *)
519 | extension Metadata.Value: CustomStringConvertible {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
520 | public var description: String {
521 | switch self {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:531:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
529 |
530 | @available(gRPCSwift 2.0, *)
531 | extension Metadata.Value: CustomDebugStringConvertible {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
532 | public var debugDescription: String {
533 | switch self {
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:34:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
32 | ///
33 | /// Note that clients and servers may synthesise errors which may not include metadata.
34 | public var metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
35 |
36 | /// The original error which led to this error being thrown.
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:50:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
48 | code: Code,
49 | message: String,
50 | metadata: Metadata = [:],
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
51 | cause: (any Error)? = nil
52 | ) {
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:79:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
77 | code: Code,
78 | message: String,
79 | metadata: Metadata = [:],
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
80 | cause: RPCError
81 | ) {
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:104:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
102 | /// - status: The status to convert.
103 | /// - metadata: Any metadata to attach to the error.
104 | public init?(status: Status, metadata: Metadata = [:]) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
105 | guard let code = Code(status.code) else { return nil }
106 | self.init(code: code, message: status.message, metadata: metadata)
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:303:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
301 | ///
302 | /// Note that clients and servers may synthesise errors which may not include metadata.
303 | var rpcErrorMetadata: Metadata { get }
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
304 |
305 | /// The original error which led to this error being thrown.
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:317:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
315 | ///
316 | /// Note that clients and servers may synthesise errors which may not include metadata.
317 | public var rpcErrorMetadata: Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 | [:]
319 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[100/123] Compiling GRPCCore RPCError.swift
/host/spi-builder-workspace/Sources/GRPCCore/Internal/Metadata+GRPC.swift:18:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
16 |
17 | @available(gRPCSwift 2.0, *)
18 | extension Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
19 | @inlinable
20 | var previousRPCAttempts: Int? {
/host/spi-builder-workspace/Sources/GRPCCore/Internal/Metadata+GRPC.swift:56:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
54 |
55 | @available(gRPCSwift 2.0, *)
56 | extension Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
57 | @usableFromInline
58 | enum GRPCKey: String, Sendable, Hashable {
/host/spi-builder-workspace/Sources/GRPCCore/Internal/Metadata+GRPC.swift:81:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
79 |
80 | @available(gRPCSwift 2.0, *)
81 | extension Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
82 | @usableFromInline
83 | enum RetryPushback: Hashable, Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:268:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
266 |
267 | @available(gRPCSwift 2.0, *)
268 | extension Metadata: RandomAccessCollection {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
269 | public typealias Element = (key: String, value: Value)
270 |
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:315:37: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
313 | /// An iterator for all metadata ``Value``s associated with a given key.
314 | public struct Iterator: IteratorProtocol, Sendable {
315 | private var metadataIterator: Metadata.Iterator
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
316 | private let key: String
317 |
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:315:46: warning: 'Iterator' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
313 | /// An iterator for all metadata ``Value``s associated with a given key.
314 | public struct Iterator: IteratorProtocol, Sendable {
315 | private var metadataIterator: Metadata.Iterator
| `- warning: 'Iterator' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
316 | private let key: String
317 |
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:318:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
316 | private let key: String
317 |
318 | init(forKey key: String, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
319 | self.metadataIterator = metadata.makeIterator()
320 | self.key = key
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:334:27: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
332 |
333 | private let key: String
334 | private let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
335 |
336 | internal init(key: String, metadata: Metadata) {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:336:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
334 | private let metadata: Metadata
335 |
336 | internal init(key: String, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
337 | self.key = key
338 | self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:309:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
307 |
308 | @available(gRPCSwift 2.0, *)
309 | extension Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
310 | /// A sequence of metadata values for a given key.
311 | public struct Values: Sequence, Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:384:27: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
382 |
383 | private let key: String
384 | private let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
385 |
386 | internal init(key: String, metadata: Metadata) {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:386:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
384 | private let metadata: Metadata
385 |
386 | internal init(key: String, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
387 | self.key = key
388 | self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:357:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
355 |
356 | @available(gRPCSwift 2.0, *)
357 | extension Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
358 | /// A sequence of metadata string values for a given key.
359 | public struct StringValues: Sequence, Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:440:27: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
438 |
439 | private let key: String
440 | private let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
441 |
442 | internal init(key: String, metadata: Metadata) {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:442:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
440 | private let metadata: Metadata
441 |
442 | internal init(key: String, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
443 | self.key = key
444 | self.metadata = metadata
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:407:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
405 |
406 | @available(gRPCSwift 2.0, *)
407 | extension Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
408 | /// A sequence of metadata binary values for a given key.
409 | public struct BinaryValues: Sequence, Sendable {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:469:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
467 |
468 | @available(gRPCSwift 2.0, *)
469 | extension Metadata: ExpressibleByDictionaryLiteral {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
470 | public init(dictionaryLiteral elements: (String, Value)...) {
471 | self.elements = elements.map { KeyValuePair(key: $0, value: $1) }
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:476:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
474 |
475 | @available(gRPCSwift 2.0, *)
476 | extension Metadata: ExpressibleByArrayLiteral {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
477 | public init(arrayLiteral elements: (String, Value)...) {
478 | self.elements = elements.map { KeyValuePair(key: $0, value: $1) }
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:483:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
481 |
482 | @available(gRPCSwift 2.0, *)
483 | extension Metadata.Value: ExpressibleByStringLiteral {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
484 | public init(stringLiteral value: StringLiteralType) {
485 | self = .string(value)
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:490:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
488 |
489 | @available(gRPCSwift 2.0, *)
490 | extension Metadata.Value: ExpressibleByStringInterpolation {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
491 | public init(stringInterpolation: DefaultStringInterpolation) {
492 | self = .string(String(stringInterpolation: stringInterpolation))
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:497:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
495 |
496 | @available(gRPCSwift 2.0, *)
497 | extension Metadata.Value: ExpressibleByArrayLiteral {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
498 | public typealias ArrayLiteralElement = UInt8
499 |
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:506:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
504 |
505 | @available(gRPCSwift 2.0, *)
506 | extension Metadata: CustomStringConvertible {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
507 | public var description: String {
508 | if self.isEmpty {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:519:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
517 |
518 | @available(gRPCSwift 2.0, *)
519 | extension Metadata.Value: CustomStringConvertible {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
520 | public var description: String {
521 | switch self {
/host/spi-builder-workspace/Sources/GRPCCore/Metadata.swift:531:11: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
529 |
530 | @available(gRPCSwift 2.0, *)
531 | extension Metadata.Value: CustomDebugStringConvertible {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
532 | public var debugDescription: String {
533 | switch self {
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:34:24: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
32 | ///
33 | /// Note that clients and servers may synthesise errors which may not include metadata.
34 | public var metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
35 |
36 | /// The original error which led to this error being thrown.
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:50:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
48 | code: Code,
49 | message: String,
50 | metadata: Metadata = [:],
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
51 | cause: (any Error)? = nil
52 | ) {
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:79:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
77 | code: Code,
78 | message: String,
79 | metadata: Metadata = [:],
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
80 | cause: RPCError
81 | ) {
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:104:42: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
102 | /// - status: The status to convert.
103 | /// - metadata: Any metadata to attach to the error.
104 | public init?(status: Status, metadata: Metadata = [:]) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
105 | guard let code = Code(status.code) else { return nil }
106 | self.init(code: code, message: status.message, metadata: metadata)
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:303:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
301 | ///
302 | /// Note that clients and servers may synthesise errors which may not include metadata.
303 | var rpcErrorMetadata: Metadata { get }
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
304 |
305 | /// The original error which led to this error being thrown.
/host/spi-builder-workspace/Sources/GRPCCore/RPCError.swift:317:32: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
315 | ///
316 | /// Note that clients and servers may synthesise errors which may not include metadata.
317 | public var rpcErrorMetadata: Metadata {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
318 | [:]
319 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[101/123] Compiling GRPCCore ClientRPCExecutor.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientResponse+Convenience.swift:97:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
95 | /// - metadata: The metadata received from the server.
96 | @inlinable
97 | init(status: Status, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
98 | if let error = RPCError(status: status, metadata: metadata) {
99 | self.accepted = .failure(error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:113:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | enum OnFirstResponsePart<Bytes: GRPCContiguousBytes>: Sendable {
112 | case metadata(
113 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:116:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
116 | case status(Status, Metadata)
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
117 | case failed(RPCError)
118 | }
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:72:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
70 | static func _execute<Input, Output, Bytes: GRPCContiguousBytes>(
71 | context: ServerContext,
72 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
73 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
74 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:113:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | timeout: Duration,
112 | context: ServerContext,
113 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
115 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:153:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
151 | static func _processRPC<Input, Output, Bytes: GRPCContiguousBytes>(
152 | context: ServerContext,
153 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
154 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
155 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:281:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
279 | enum OnFirstRequestPart<Bytes: GRPCContiguousBytes> {
280 | case process(
281 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 | UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>
283 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:206:19: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
204 |
205 | let status: Status
206 | let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |
208 | switch response {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[102/123] Compiling GRPCCore ClientRequest+Convenience.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientResponse+Convenience.swift:97:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
95 | /// - metadata: The metadata received from the server.
96 | @inlinable
97 | init(status: Status, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
98 | if let error = RPCError(status: status, metadata: metadata) {
99 | self.accepted = .failure(error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:113:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | enum OnFirstResponsePart<Bytes: GRPCContiguousBytes>: Sendable {
112 | case metadata(
113 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:116:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
116 | case status(Status, Metadata)
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
117 | case failed(RPCError)
118 | }
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:72:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
70 | static func _execute<Input, Output, Bytes: GRPCContiguousBytes>(
71 | context: ServerContext,
72 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
73 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
74 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:113:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | timeout: Duration,
112 | context: ServerContext,
113 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
115 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:153:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
151 | static func _processRPC<Input, Output, Bytes: GRPCContiguousBytes>(
152 | context: ServerContext,
153 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
154 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
155 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:281:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
279 | enum OnFirstRequestPart<Bytes: GRPCContiguousBytes> {
280 | case process(
281 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 | UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>
283 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:206:19: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
204 |
205 | let status: Status
206 | let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |
208 | switch response {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[103/123] Compiling GRPCCore ClientResponse+Convenience.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientResponse+Convenience.swift:97:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
95 | /// - metadata: The metadata received from the server.
96 | @inlinable
97 | init(status: Status, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
98 | if let error = RPCError(status: status, metadata: metadata) {
99 | self.accepted = .failure(error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:113:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | enum OnFirstResponsePart<Bytes: GRPCContiguousBytes>: Sendable {
112 | case metadata(
113 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:116:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
116 | case status(Status, Metadata)
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
117 | case failed(RPCError)
118 | }
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:72:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
70 | static func _execute<Input, Output, Bytes: GRPCContiguousBytes>(
71 | context: ServerContext,
72 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
73 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
74 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:113:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | timeout: Duration,
112 | context: ServerContext,
113 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
115 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:153:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
151 | static func _processRPC<Input, Output, Bytes: GRPCContiguousBytes>(
152 | context: ServerContext,
153 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
154 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
155 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:281:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
279 | enum OnFirstRequestPart<Bytes: GRPCContiguousBytes> {
280 | case process(
281 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 | UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>
283 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:206:19: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
204 |
205 | let status: Status
206 | let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |
208 | switch response {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[104/123] Compiling GRPCCore ClientStreamExecutor.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientResponse+Convenience.swift:97:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
95 | /// - metadata: The metadata received from the server.
96 | @inlinable
97 | init(status: Status, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
98 | if let error = RPCError(status: status, metadata: metadata) {
99 | self.accepted = .failure(error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:113:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | enum OnFirstResponsePart<Bytes: GRPCContiguousBytes>: Sendable {
112 | case metadata(
113 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:116:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
116 | case status(Status, Metadata)
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
117 | case failed(RPCError)
118 | }
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:72:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
70 | static func _execute<Input, Output, Bytes: GRPCContiguousBytes>(
71 | context: ServerContext,
72 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
73 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
74 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:113:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | timeout: Duration,
112 | context: ServerContext,
113 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
115 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:153:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
151 | static func _processRPC<Input, Output, Bytes: GRPCContiguousBytes>(
152 | context: ServerContext,
153 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
154 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
155 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:281:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
279 | enum OnFirstRequestPart<Bytes: GRPCContiguousBytes> {
280 | case process(
281 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 | UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>
283 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:206:19: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
204 |
205 | let status: Status
206 | let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |
208 | switch response {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[105/123] Compiling GRPCCore RetryDelaySequence.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientResponse+Convenience.swift:97:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
95 | /// - metadata: The metadata received from the server.
96 | @inlinable
97 | init(status: Status, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
98 | if let error = RPCError(status: status, metadata: metadata) {
99 | self.accepted = .failure(error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:113:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | enum OnFirstResponsePart<Bytes: GRPCContiguousBytes>: Sendable {
112 | case metadata(
113 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:116:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
116 | case status(Status, Metadata)
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
117 | case failed(RPCError)
118 | }
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:72:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
70 | static func _execute<Input, Output, Bytes: GRPCContiguousBytes>(
71 | context: ServerContext,
72 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
73 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
74 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:113:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | timeout: Duration,
112 | context: ServerContext,
113 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
115 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:153:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
151 | static func _processRPC<Input, Output, Bytes: GRPCContiguousBytes>(
152 | context: ServerContext,
153 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
154 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
155 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:281:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
279 | enum OnFirstRequestPart<Bytes: GRPCContiguousBytes> {
280 | case process(
281 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 | UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>
283 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:206:19: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
204 |
205 | let status: Status
206 | let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |
208 | switch response {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[106/123] Compiling GRPCCore ConditionalInterceptor.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientResponse+Convenience.swift:97:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
95 | /// - metadata: The metadata received from the server.
96 | @inlinable
97 | init(status: Status, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
98 | if let error = RPCError(status: status, metadata: metadata) {
99 | self.accepted = .failure(error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:113:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | enum OnFirstResponsePart<Bytes: GRPCContiguousBytes>: Sendable {
112 | case metadata(
113 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:116:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
116 | case status(Status, Metadata)
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
117 | case failed(RPCError)
118 | }
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:72:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
70 | static func _execute<Input, Output, Bytes: GRPCContiguousBytes>(
71 | context: ServerContext,
72 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
73 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
74 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:113:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | timeout: Duration,
112 | context: ServerContext,
113 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
115 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:153:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
151 | static func _processRPC<Input, Output, Bytes: GRPCContiguousBytes>(
152 | context: ServerContext,
153 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
154 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
155 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:281:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
279 | enum OnFirstRequestPart<Bytes: GRPCContiguousBytes> {
280 | case process(
281 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 | UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>
283 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:206:19: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
204 |
205 | let status: Status
206 | let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |
208 | switch response {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[107/123] Compiling GRPCCore ServerCancellationManager.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientResponse+Convenience.swift:97:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
95 | /// - metadata: The metadata received from the server.
96 | @inlinable
97 | init(status: Status, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
98 | if let error = RPCError(status: status, metadata: metadata) {
99 | self.accepted = .failure(error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:113:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | enum OnFirstResponsePart<Bytes: GRPCContiguousBytes>: Sendable {
112 | case metadata(
113 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:116:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
116 | case status(Status, Metadata)
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
117 | case failed(RPCError)
118 | }
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:72:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
70 | static func _execute<Input, Output, Bytes: GRPCContiguousBytes>(
71 | context: ServerContext,
72 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
73 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
74 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:113:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | timeout: Duration,
112 | context: ServerContext,
113 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
115 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:153:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
151 | static func _processRPC<Input, Output, Bytes: GRPCContiguousBytes>(
152 | context: ServerContext,
153 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
154 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
155 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:281:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
279 | enum OnFirstRequestPart<Bytes: GRPCContiguousBytes> {
280 | case process(
281 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 | UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>
283 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:206:19: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
204 |
205 | let status: Status
206 | let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |
208 | switch response {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[108/123] Compiling GRPCCore ServerRPCExecutor.swift
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor.swift:41:21: warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
39 | serializer: some MessageSerializer<Input>,
40 | deserializer: some MessageDeserializer<Output>,
41 | transport: some ClientTransport,
| `- warning: 'ClientTransport' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
42 | interceptors: [any ClientInterceptor],
43 | handler: @Sendable @escaping (StreamingClientResponse<Output>) async throws -> Result
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientResponse+Convenience.swift:97:34: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
95 | /// - metadata: The metadata received from the server.
96 | @inlinable
97 | init(status: Status, metadata: Metadata) {
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
98 | if let error = RPCError(status: status, metadata: metadata) {
99 | self.accepted = .failure(error)
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:113:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | enum OnFirstResponsePart<Bytes: GRPCContiguousBytes>: Sendable {
112 | case metadata(
113 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Client/Internal/ClientStreamExecutor.swift:116:25: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | UnsafeTransfer<RPCAsyncSequence<RPCResponsePart<Bytes>, any Error>.AsyncIterator>
115 | )
116 | case status(Status, Metadata)
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
117 | case failed(RPCError)
118 | }
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:72:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
70 | static func _execute<Input, Output, Bytes: GRPCContiguousBytes>(
71 | context: ServerContext,
72 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
73 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
74 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:113:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
111 | timeout: Duration,
112 | context: ServerContext,
113 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
114 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
115 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:153:15: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
151 | static func _processRPC<Input, Output, Bytes: GRPCContiguousBytes>(
152 | context: ServerContext,
153 | metadata: Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
154 | inbound: UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>,
155 | outbound: RPCWriter<RPCResponsePart<Bytes>>.Closable,
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:281:7: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
279 | enum OnFirstRequestPart<Bytes: GRPCContiguousBytes> {
280 | case process(
281 | Metadata,
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
282 | UnsafeTransfer<RPCAsyncSequence<RPCRequestPart<Bytes>, any Error>.AsyncIterator>
283 | )
/host/spi-builder-workspace/Sources/GRPCCore/Call/Server/Internal/ServerRPCExecutor.swift:206:19: warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
204 |
205 | let status: Status
206 | let metadata: Metadata
| `- warning: 'Metadata' is deprecated: See https://forums.swift.org/t/80177 [#DeprecatedDeclaration]
207 |
208 | switch response {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[109/123] 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>
[110/123] 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>
[111/123] 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>
[112/123] 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>
[113/123] 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>
[114/123] 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>
[115/123] 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>
[116/123] 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>
[117/123] Compiling GRPCCore RuntimeError.swift
[118/123] Compiling GRPCCore ServiceDescriptor.swift
[119/123] Compiling GRPCCore Status.swift
[120/123] Compiling GRPCCore AsyncSequenceOfOne.swift
[121/123] Compiling GRPCCore BroadcastAsyncSequence+RPCWriter.swift
[122/123] Compiling GRPCCore BroadcastAsyncSequence.swift
[123/123] Compiling GRPCCore GRPCAsyncThrowingStream.swift
[125/129] Compiling GRPCInProcessTransport InProcessTransport.swift
[126/129] Compiling GRPCInProcessTransport Syscalls.swift
[127/129] 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>
[128/129] 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>
[129/129] 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>
Build complete! (62.02s)
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"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.