The Swift Package Index logo.Swift Package Index

Build Information

Successful build of swift-distributed-actors, reference main (70f9f0), with Swift 6.3 for macOS (SPM) on 23 Apr 2026 06:46:42 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

634 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
 104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
 105 |         }
 106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
     |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
     |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
 107 |         return try Wire.HandshakeResponse(proto)
 108 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:602:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 584 |         _ type: TraceLogType,
 585 |         message: Any,
 586 |         file: String = #filePath,
     |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 587 |         function: String = #function,
 588 |         line: UInt = #line
     :
 600 |                 level: level,
 601 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
 602 |                 file: file,
     |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
     |                       `- note: add parentheses to silence this warning
 603 |                 function: function,
 604 |                 line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1648:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1646 |
1647 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1648 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1649 |         }
1650 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1666:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1664 |
1665 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1666 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1667 |         }
1668 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1693:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1691 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1692 |             }
1693 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1694 |         }
1695 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1271/1319] Compiling DistributedCluster ClusterNode.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |     public static let protoMessageName: String = "SWIMPingResponse"
269 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
270 |         1: .same(proto: "ack"),
271 |         2: .same(proto: "nack"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
351 |         1: .same(proto: "target"),
352 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
436 |         1: .same(proto: "target"),
437 |         2: .same(proto: "sequenceNumber"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |     public static let protoMessageName: String = "SWIMStatus"
504 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
505 |         1: .same(proto: "type"),
506 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
545 |         0: .same(proto: "UNSPECIFIED"),
546 |         1: .same(proto: "ALIVE"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |     public static let protoMessageName: String = "SWIMMember"
555 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
556 |         1: .same(proto: "id"),
557 |         2: .same(proto: "status"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |     public static let protoMessageName: String = "SWIMGossipPayload"
632 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
633 |         1: .same(proto: "member")
634 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
 104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
 105 |         }
 106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
     |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
     |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
 107 |         return try Wire.HandshakeResponse(proto)
 108 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:602:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 584 |         _ type: TraceLogType,
 585 |         message: Any,
 586 |         file: String = #filePath,
     |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 587 |         function: String = #function,
 588 |         line: UInt = #line
     :
 600 |                 level: level,
 601 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
 602 |                 file: file,
     |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
     |                       `- note: add parentheses to silence this warning
 603 |                 function: function,
 604 |                 line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1648:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1646 |
1647 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1648 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1649 |         }
1650 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1666:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1664 |
1665 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1666 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1667 |         }
1668 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1693:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1691 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1692 |             }
1693 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1694 |         }
1695 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1272/1319] Compiling DistributedCluster ClusterSystem+Clusterd.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |     public static let protoMessageName: String = "SWIMPingResponse"
269 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
270 |         1: .same(proto: "ack"),
271 |         2: .same(proto: "nack"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
351 |         1: .same(proto: "target"),
352 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
436 |         1: .same(proto: "target"),
437 |         2: .same(proto: "sequenceNumber"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |     public static let protoMessageName: String = "SWIMStatus"
504 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
505 |         1: .same(proto: "type"),
506 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
545 |         0: .same(proto: "UNSPECIFIED"),
546 |         1: .same(proto: "ALIVE"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |     public static let protoMessageName: String = "SWIMMember"
555 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
556 |         1: .same(proto: "id"),
557 |         2: .same(proto: "status"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |     public static let protoMessageName: String = "SWIMGossipPayload"
632 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
633 |         1: .same(proto: "member")
634 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
 104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
 105 |         }
 106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
     |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
     |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
 107 |         return try Wire.HandshakeResponse(proto)
 108 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:602:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 584 |         _ type: TraceLogType,
 585 |         message: Any,
 586 |         file: String = #filePath,
     |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 587 |         function: String = #function,
 588 |         line: UInt = #line
     :
 600 |                 level: level,
 601 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
 602 |                 file: file,
     |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
     |                       `- note: add parentheses to silence this warning
 603 |                 function: function,
 604 |                 line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1648:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1646 |
1647 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1648 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1649 |         }
1650 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1666:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1664 |
1665 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1666 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1667 |         }
1668 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1693:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1691 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1692 |             }
1693 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1694 |         }
1695 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1273/1319] Compiling DistributedCluster ClusterSystem.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |     public static let protoMessageName: String = "SWIMPingResponse"
269 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
270 |         1: .same(proto: "ack"),
271 |         2: .same(proto: "nack"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
351 |         1: .same(proto: "target"),
352 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
436 |         1: .same(proto: "target"),
437 |         2: .same(proto: "sequenceNumber"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |     public static let protoMessageName: String = "SWIMStatus"
504 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
505 |         1: .same(proto: "type"),
506 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
545 |         0: .same(proto: "UNSPECIFIED"),
546 |         1: .same(proto: "ALIVE"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |     public static let protoMessageName: String = "SWIMMember"
555 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
556 |         1: .same(proto: "id"),
557 |         2: .same(proto: "status"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |     public static let protoMessageName: String = "SWIMGossipPayload"
632 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
633 |         1: .same(proto: "member")
634 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
 104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
 105 |         }
 106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
     |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
     |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
 107 |         return try Wire.HandshakeResponse(proto)
 108 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:602:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 584 |         _ type: TraceLogType,
 585 |         message: Any,
 586 |         file: String = #filePath,
     |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 587 |         function: String = #function,
 588 |         line: UInt = #line
     :
 600 |                 level: level,
 601 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
 602 |                 file: file,
     |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
     |                       `- note: add parentheses to silence this warning
 603 |                 function: function,
 604 |                 line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1648:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1646 |
1647 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1648 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1649 |         }
1650 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1666:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1664 |
1665 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1666 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1667 |         }
1668 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1693:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1691 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1692 |             }
1693 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1694 |         }
1695 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1274/1319] Compiling DistributedCluster ClusterSystemSettings.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |     public static let protoMessageName: String = "SWIMPingResponse"
269 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
270 |         1: .same(proto: "ack"),
271 |         2: .same(proto: "nack"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
351 |         1: .same(proto: "target"),
352 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
436 |         1: .same(proto: "target"),
437 |         2: .same(proto: "sequenceNumber"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |     public static let protoMessageName: String = "SWIMStatus"
504 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
505 |         1: .same(proto: "type"),
506 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
545 |         0: .same(proto: "UNSPECIFIED"),
546 |         1: .same(proto: "ALIVE"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |     public static let protoMessageName: String = "SWIMMember"
555 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
556 |         1: .same(proto: "id"),
557 |         2: .same(proto: "status"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |     public static let protoMessageName: String = "SWIMGossipPayload"
632 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
633 |         1: .same(proto: "member")
634 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
 104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
 105 |         }
 106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
     |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
     |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
 107 |         return try Wire.HandshakeResponse(proto)
 108 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:602:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 584 |         _ type: TraceLogType,
 585 |         message: Any,
 586 |         file: String = #filePath,
     |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 587 |         function: String = #function,
 588 |         line: UInt = #line
     :
 600 |                 level: level,
 601 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
 602 |                 file: file,
     |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
     |                       `- note: add parentheses to silence this warning
 603 |                 function: function,
 604 |                 line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1648:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1646 |
1647 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1648 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1649 |         }
1650 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1666:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1664 |
1665 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1666 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1667 |         }
1668 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1693:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1691 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1692 |             }
1693 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1694 |         }
1695 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1275/1319] Compiling DistributedCluster Heap.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |     public static let protoMessageName: String = "SWIMPingResponse"
269 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
270 |         1: .same(proto: "ack"),
271 |         2: .same(proto: "nack"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
351 |         1: .same(proto: "target"),
352 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
436 |         1: .same(proto: "target"),
437 |         2: .same(proto: "sequenceNumber"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |     public static let protoMessageName: String = "SWIMStatus"
504 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
505 |         1: .same(proto: "type"),
506 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
545 |         0: .same(proto: "UNSPECIFIED"),
546 |         1: .same(proto: "ALIVE"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |     public static let protoMessageName: String = "SWIMMember"
555 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
556 |         1: .same(proto: "id"),
557 |         2: .same(proto: "status"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |     public static let protoMessageName: String = "SWIMGossipPayload"
632 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
633 |         1: .same(proto: "member")
634 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
 104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
 105 |         }
 106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
     |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
     |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
 107 |         return try Wire.HandshakeResponse(proto)
 108 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:602:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 584 |         _ type: TraceLogType,
 585 |         message: Any,
 586 |         file: String = #filePath,
     |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 587 |         function: String = #function,
 588 |         line: UInt = #line
     :
 600 |                 level: level,
 601 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
 602 |                 file: file,
     |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
     |                       `- note: add parentheses to silence this warning
 603 |                 function: function,
 604 |                 line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1648:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1646 |
1647 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1648 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1649 |         }
1650 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1666:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1664 |
1665 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1666 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1667 |         }
1668 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1693:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1691 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1692 |             }
1693 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1694 |         }
1695 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1276/1319] Compiling DistributedCluster MPSCLinkedQueue.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |     public static let protoMessageName: String = "SWIMPingResponse"
269 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
270 |         1: .same(proto: "ack"),
271 |         2: .same(proto: "nack"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
351 |         1: .same(proto: "target"),
352 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
436 |         1: .same(proto: "target"),
437 |         2: .same(proto: "sequenceNumber"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |     public static let protoMessageName: String = "SWIMStatus"
504 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
505 |         1: .same(proto: "type"),
506 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
545 |         0: .same(proto: "UNSPECIFIED"),
546 |         1: .same(proto: "ALIVE"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |     public static let protoMessageName: String = "SWIMMember"
555 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
556 |         1: .same(proto: "id"),
557 |         2: .same(proto: "status"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |     public static let protoMessageName: String = "SWIMGossipPayload"
632 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
633 |         1: .same(proto: "member")
634 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
 104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
 105 |         }
 106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
     |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
     |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
 107 |         return try Wire.HandshakeResponse(proto)
 108 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:602:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 584 |         _ type: TraceLogType,
 585 |         message: Any,
 586 |         file: String = #filePath,
     |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 587 |         function: String = #function,
 588 |         line: UInt = #line
     :
 600 |                 level: level,
 601 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
 602 |                 file: file,
     |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
     |                       `- note: add parentheses to silence this warning
 603 |                 function: function,
 604 |                 line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1648:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1646 |
1647 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1648 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1649 |         }
1650 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1666:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1664 |
1665 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1666 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1667 |         }
1668 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1693:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1691 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1692 |             }
1693 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1694 |         }
1695 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1277/1319] Compiling DistributedCluster RingBuffer.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |     public static let protoMessageName: String = "SWIMPingResponse"
269 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
270 |         1: .same(proto: "ack"),
271 |         2: .same(proto: "nack"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
351 |         1: .same(proto: "target"),
352 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
436 |         1: .same(proto: "target"),
437 |         2: .same(proto: "sequenceNumber"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |     public static let protoMessageName: String = "SWIMStatus"
504 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
505 |         1: .same(proto: "type"),
506 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
545 |         0: .same(proto: "UNSPECIFIED"),
546 |         1: .same(proto: "ALIVE"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |     public static let protoMessageName: String = "SWIMMember"
555 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
556 |         1: .same(proto: "id"),
557 |         2: .same(proto: "status"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |     public static let protoMessageName: String = "SWIMGossipPayload"
632 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
633 |         1: .same(proto: "member")
634 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
 104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
 105 |         }
 106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
     |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
     |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
 107 |         return try Wire.HandshakeResponse(proto)
 108 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:602:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 584 |         _ type: TraceLogType,
 585 |         message: Any,
 586 |         file: String = #filePath,
     |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 587 |         function: String = #function,
 588 |         line: UInt = #line
     :
 600 |                 level: level,
 601 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
 602 |                 file: file,
     |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
     |                       `- note: add parentheses to silence this warning
 603 |                 function: function,
 604 |                 line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1648:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1646 |
1647 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1648 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1649 |         }
1650 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1666:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1664 |
1665 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1666 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1667 |         }
1668 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1693:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1691 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1692 |             }
1693 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1694 |         }
1695 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1278/1319] Compiling DistributedCluster _LinkedBlockingQueue.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:22:1: warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 20 | // MARK: Serialization
 21 |
 22 | extension SWIM.Status: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Status' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |     public typealias ProtobufRepresentation = _ProtoSWIMStatus
 24 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:65:1: warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 63 | }
 64 |
 65 | extension SWIM.GossipPayload: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'GossipPayload' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 66 |     public typealias ProtobufRepresentation = _ProtoSWIMGossipPayload
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:92:1: warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
 90 | }
 91 |
 92 | extension SWIM.Member: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Member' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 93 |     public typealias ProtobufRepresentation = _ProtoSWIMMember
 94 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:116:1: warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
114 | }
115 |
116 | extension SWIM.PingResponse: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'PingResponse' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'SWIM' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
117 |     public typealias ProtobufRepresentation = _ProtoSWIMPingResponse
118 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM+Serialization.swift:170:1: warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
168 | }
169 |
170 | extension ClusterMembership.Node: _ProtobufRepresentable {
    | |- warning: extension declares a conformance of imported type 'Node' to imported protocols 'Decodable', 'Encodable'; this will not behave correctly if the owners of 'ClusterMembership' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
171 |     public typealias ProtobufRepresentation = _ProtoClusterNode
172 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:269:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
267 | extension _ProtoSWIMPingResponse: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
268 |     public static let protoMessageName: String = "SWIMPingResponse"
269 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
270 |         1: .same(proto: "ack"),
271 |         2: .same(proto: "nack"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:350:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
348 | extension _ProtoSWIMPingResponse.Ack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
349 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Ack"
350 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
351 |         1: .same(proto: "target"),
352 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:435:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
433 | extension _ProtoSWIMPingResponse.Nack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
434 |     public static let protoMessageName: String = _ProtoSWIMPingResponse.protoMessageName + ".Nack"
435 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
436 |         1: .same(proto: "target"),
437 |         2: .same(proto: "sequenceNumber"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:504:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
502 | extension _ProtoSWIMStatus: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
503 |     public static let protoMessageName: String = "SWIMStatus"
504 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
505 |         1: .same(proto: "type"),
506 |         2: .same(proto: "incarnation"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:544:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
542 |
543 | extension _ProtoSWIMStatus.TypeEnum: SwiftProtobuf._ProtoNameProviding {
544 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
545 |         0: .same(proto: "UNSPECIFIED"),
546 |         1: .same(proto: "ALIVE"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:555:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
553 | extension _ProtoSWIMMember: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
554 |     public static let protoMessageName: String = "SWIMMember"
555 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
556 |         1: .same(proto: "id"),
557 |         2: .same(proto: "status"),
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/SWIM/Protobuf/SWIM.pb.swift:632:67: warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
630 | extension _ProtoSWIMGossipPayload: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
631 |     public static let protoMessageName: String = "SWIMGossipPayload"
632 |     public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
    |                                                                   `- warning: 'init(dictionaryLiteral:)' is deprecated: Please regenerate your .pb.swift files with the current version of the SwiftProtobuf protoc plugin. [#DeprecatedDeclaration]
633 |         1: .same(proto: "member")
634 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:106:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
 104 |             throw WireFormatError.notEnoughBytes(expectedAtLeastBytes: bytes.readableBytes, hint: "handshake accept")
 105 |         }
 106 |         let proto = try _ProtoHandshakeResponse(serializedData: data)
     |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
     |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
 107 |         return try Wire.HandshakeResponse(proto)
 108 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:602:23: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
 584 |         _ type: TraceLogType,
 585 |         message: Any,
 586 |         file: String = #filePath,
     |                        `- note: did you mean for parameter 'file' to default to '#fileID'?
 587 |         function: String = #function,
 588 |         line: UInt = #line
     :
 600 |                 level: level,
 601 |                 "[tracelog:sys-msg-redelivery] \(type.description): \(message)",
 602 |                 file: file,
     |                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
     |                       `- note: add parentheses to silence this warning
 603 |                 function: function,
 604 |                 line: line
Logging.Logger.log.file:2:1: note: 'file' declared here
1 | struct Logger {
2 | file: String}
  | `- note: 'file' declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1648:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1646 |
1647 |             let reply = RemoteCallReply<Success>(callID: callID, value: value)
1648 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1649 |         }
1650 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1666:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1664 |
1665 |             let reply = RemoteCallReply<_Done>(callID: callID, value: .done)
1666 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1667 |         }
1668 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/ClusterSystem.swift:1693:31: warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1691 |                 reply = .init(callID: callID, error: GenericRemoteCallError(errorType: errorType))
1692 |             }
1693 |             try await channel.writeAndFlush(TransportEnvelope(envelope: Payload(payload: .message(reply)), recipient: recipient))
     |                               `- warning: type 'TransportEnvelope' does not conform to the 'Sendable' protocol
1694 |         }
1695 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Cluster/Transport/TransportPipelines.swift:904:17: note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 902 |
 903 | /// Mirrors `Envelope` however ensures that the payload is a message; i.e. it cannot be a closure.
 904 | internal struct TransportEnvelope: CustomStringConvertible, CustomDebugStringConvertible {
     |                 `- note: consider making struct 'TransportEnvelope' conform to the 'Sendable' protocol
 905 |     let storage: Storage
 906 |     enum Storage {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1279/1319] Compiling DistributedCluster Serialization+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1280/1319] Compiling DistributedCluster Serialization+Context.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1281/1319] Compiling DistributedCluster Serialization+Invocation.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1282/1319] Compiling DistributedCluster Serialization+Manifest.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1283/1319] Compiling DistributedCluster Serialization+PrimitiveSerializers.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1284/1319] Compiling DistributedCluster Serialization+SerializerID.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1285/1319] Compiling DistributedCluster Serialization+Serializers+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1286/1319] Compiling DistributedCluster Serialization+Serializers+Protobuf.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1287/1319] Compiling DistributedCluster Serialization+Serializers.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1288/1319] Compiling DistributedCluster Serialization+Settings.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1289/1319] Compiling DistributedCluster Serialization.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1290/1319] Compiling DistributedCluster SerializationPool.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1291/1319] Compiling DistributedCluster TopLevelBlobCoders.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1292/1319] Compiling DistributedCluster TopLevelBytesBlobCoders.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1293/1319] Compiling DistributedCluster TopLevelBytesBlobSerializer.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1294/1319] Compiling DistributedCluster TopLevelProtobufCoders.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/Serialization/Serialization+Serializers+Protobuf.swift:42:25: warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
40 |
41 |     override open func deserialize(from buffer: Serialization.Buffer) throws -> Message {
42 |         let proto = try ProtobufMessage(serializedData: buffer.readData())
   |                         |- warning: 'init(serializedData:extensions:partial:options:)' is deprecated: replaced by 'init(serializedBytes:extensions:partial:options:)' [#DeprecatedDeclaration]
   |                         `- note: use 'init(serializedBytes:extensions:partial:options:)' instead
43 |         return try self.fromProto(proto, context: self.serializationContext)
44 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1295/1319] Compiling DistributedCluster TopLevelProtobufSerializer.swift
[1296/1319] Compiling DistributedCluster StashBuffer.swift
[1297/1319] Compiling DistributedCluster String+Extensions.swift
[1298/1319] Compiling DistributedCluster Supervision.swift
[1299/1319] Compiling DistributedCluster SystemMessages.swift
[1300/1319] Compiling DistributedCluster Time.swift
[1301/1319] Compiling DistributedCluster TimeSpec.swift
[1302/1319] Compiling DistributedCluster Version.swift
[1303/1319] Compiling DistributedCluster WeakActorDictionary.swift
[1304/1319] Compiling DistributedCluster _ActorNaming.swift
[1305/1319] Compiling DistributedCluster _ActorShell.swift
[1306/1319] Compiling DistributedCluster _BehaviorTimers.swift
[1307/1319] Compiling DistributedCluster _Mailbox.swift
[1308/1319] Compiling DistributedCluster _OrderedSet+Extensions.swift
[1309/1319] Compiling DistributedCluster _Signals.swift
[1310/1319] Compiling DistributedCluster utils.swift
[1311/1340] Emitting module it_Clustered_swim_suspension_reachability
[1312/1340] Compiling it_Clustered_swim_suspension_reachability main.swift
[1313/1340] Compiling MultiNodeTestKit MultiNodeTestSettings.swift
[1314/1340] Compiling MultiNodeTestKit MultiNodeTestKit.swift
[1314/1340] Write Objects.LinkFileList
[1316/1340] Compiling MultiNodeTestKit MultiNodeTestKit+Control.swift
[1317/1340] Emitting module MultiNodeTestKit
[1318/1340] Compiling MultiNodeTestKit MultiNodeTestConductor.swift
[1319/1344] Compiling DistributedActorsMultiNodeTests MultiNode+ReceptionistTests.swift
[1320/1344] Compiling DistributedActorsMultiNodeTests MultiNode+MultiNodeConductorTests.swift
[1321/1344] Compiling DistributedActorsMultiNodeTests MultiNode+ClusterSingletonTests.swift
[1322/1344] Emitting module DistributedActorsMultiNodeTests
[1323/1354] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Test.swift
[1324/1355] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Exec.swift
[1325/1355] Compiling MultiNodeTestKitRunner Terminal+Rainbow.swift
[1326/1355] Compiling MultiNodeTestKitRunner Time.swift
[1327/1355] Compiling MultiNodeTestKitRunner NaiveLogger.swift
[1328/1355] Compiling MultiNodeTestKitRunner MultiNode+LogCapture.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/MultiNode+LogCapture.swift:21:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
 19 | import MultiNodeTestKit
 20 |
 21 | struct PrettyMultiNodeLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
 22 |     let nodeName: String
 23 |     let settings: MultiNodeTestSettings.MultiNodeLogCaptureSettings
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1329/1355] Compiling MultiNodeTestKitRunner Process+Extensions.swift
[1330/1355] Compiling MultiNodeTestKitRunner OutputGrepper.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:58:25: warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
 56 |                 channel.pipeline.addHandlers(
 57 |                     [
 58 |                         ByteToMessageHandler(NewlineFramer()),
    |                         `- warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
 59 |                         GrepHandler(
 60 |                             nodeName: nodeName,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Codec.swift:507:1: note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
505 |
506 | @available(*, unavailable)
507 | extension ByteToMessageHandler: Sendable {}
    | `- note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
508 |
509 | // MARK: ByteToMessageHandler: Test Helpers
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:67:14: warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)' [#DeprecatedDeclaration]
 65 |                 )
 66 |             }
 67 |             .withPipes(
    |              |- warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)' [#DeprecatedDeclaration]
    |              `- note: use 'takingOwnershipOfDescriptors(input:output:)' instead
 68 |                 inputDescriptor: dup(processToChannel.fileHandleForReading.fileDescriptor),
 69 |                 outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:71:33: warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API. [#DeprecatedDeclaration]
 69 |                 outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
 70 |             )
 71 |         let processOutputPipe = NIOFileHandle(descriptor: dup(processToChannel.fileHandleForWriting.fileDescriptor))
    |                                 `- warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API. [#DeprecatedDeclaration]
 72 |         processToChannel.fileHandleForReading.closeFile()
 73 |         processToChannel.fileHandleForWriting.closeFile()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1331/1355] Emitting module MultiNodeTestKitRunner
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/MultiNode+LogCapture.swift:21:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
 19 | import MultiNodeTestKit
 20 |
 21 | struct PrettyMultiNodeLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
 22 |     let nodeName: String
 23 |     let settings: MultiNodeTestSettings.MultiNodeLogCaptureSettings
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1332/1355] Compiling MultiNodeTestKitRunner MultiNode+TestSuites.swift
[1333/1355] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner.swift
[1333/1355] Write Objects.LinkFileList
[1334/1355] Linking it_Clustered_swim_suspension_reachability
[1336/1355] Compiling swift_clusterd boot+ClusterD.swift
[1337/1355] Emitting module swift_clusterd
[1337/1355] Applying it_Clustered_swim_suspension_reachability
[1338/1355] Write Objects.LinkFileList
[1339/1355] Linking MultiNodeTestKitRunner
[1340/1355] Applying MultiNodeTestKitRunner
[1341/1355] Linking swift-clusterd
[1342/1355] Applying swift-clusterd
[1344/1355] Compiling DistributedActorsTestKit TestProbes+Receptionist.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes+Receptionist.swift:37:71: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
28 |         within timeout: Duration,
29 |         verbose: Bool = false,
30 |         file: StaticString = #filePath,
   |                              `- note: did you mean for parameter 'file' to default to '#fileID'?
31 |         line: UInt = #line,
32 |         column: UInt = #column
   :
35 |             let listing = try self.fishForMessages(within: timeout, file: file, line: line) {
36 |                 if verbose {
37 |                     pinfo("Received listing: \($0.refs.count)", file: file, line: line)
   |                                                                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
   |                                                                       `- note: add parentheses to silence this warning
38 |                 }
39 |
DistributedCluster.pinfo.file:1:1: note: 'file' declared here
1 | file: StaticString
  | `- note: 'file' declared here
[1345/1355] Compiling DistributedActorsTestKit Task+Testing.swift
[1346/1356] Compiling DistributedActorsTestKit SingleClusterSystemXCTestCase.swift
[1347/1356] Compiling DistributedActorsTestKit ShouldMatchers.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/ShouldMatchers.swift:605:26: warning: 'init(contentsOfFile:)' was deprecated in macOS 15: Use `init(contentsOfFile:encoding:)` instead [#DeprecatedDeclaration]
603 |
604 |         var s = ""
605 |         let lines = try! String(contentsOfFile: "\(self.callSite.file)")
    |                          `- warning: 'init(contentsOfFile:)' was deprecated in macOS 15: Use `init(contentsOfFile:encoding:)` instead [#DeprecatedDeclaration]
606 |             .components(separatedBy: .newlines)
607 |         let failingLine =
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1348/1356] Compiling DistributedActorsTestKit Data+Testing.swift
[1349/1356] Compiling DistributedActorsTestKit InspectKit.swift
[1350/1356] Emitting module DistributedActorsTestKit
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/LogCapture.swift:202:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
200 | // MARK: LogCapture LogHandler
201 |
202 | struct LogCaptureLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
203 |     let label: String
204 |     let capture: LogCapture
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1351/1356] Compiling DistributedActorsTestKit ClusteredActorSystemsXCTestCase.swift
[1352/1356] Compiling DistributedActorsTestKit DistributedActor+Assertions.swift
[1353/1356] Compiling DistributedActorsTestKit LogCapture.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/LogCapture.swift:202:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
200 | // MARK: LogCapture LogHandler
201 |
202 | struct LogCaptureLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
203 |     let label: String
204 |     let capture: LogCapture
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1354/1356] Compiling DistributedActorsTestKit ActorTestKit.swift
[1355/1356] Compiling DistributedActorsTestKit ByteBuffer+Testing.swift
[1356/1356] Compiling DistributedActorsTestKit TestProbes.swift
Build complete! (66.29s)
Build complete.
{
  "cxx_language_standard" : "c++11",
  "dependencies" : [
    {
      "identity" : "swift-atomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-atomics"
    },
    {
      "identity" : "swift-cluster-membership",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-cluster-membership"
    },
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.61.1",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio"
    },
    {
      "identity" : "swift-nio-extras",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.20.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-extras"
    },
    {
      "identity" : "swift-nio-ssl",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.25.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-ssl"
    },
    {
      "identity" : "swift-protobuf",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.25.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-protobuf"
    },
    {
      "identity" : "swift-backtrace",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-server/swift-backtrace"
    },
    {
      "identity" : "swift-async-algorithms",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0-beta",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-async-algorithms"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log"
    },
    {
      "identity" : "swift-metrics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-metrics"
    },
    {
      "identity" : "swift-service-discovery",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-service-discovery"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    }
  ],
  "manifest_display_name" : "swift-distributed-actors",
  "name" : "swift-distributed-actors",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "18.0"
    },
    {
      "name" : "macos",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "18.0"
    },
    {
      "name" : "watchos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "DistributedCluster",
      "targets" : [
        "DistributedCluster"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "swift-clusterd",
      "targets" : [
        "swift-clusterd"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "it_Clustered_swim_suspension_reachability",
      "targets" : [
        "it_Clustered_swim_suspension_reachability"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "MultiNodeTestKitRunner",
      "targets" : [
        "MultiNodeTestKitRunner"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "swift_clusterd",
      "module_type" : "SwiftTarget",
      "name" : "swift-clusterd",
      "path" : "Sources/Clusterd",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "swift-clusterd"
      ],
      "sources" : [
        "boot+ClusterD.swift"
      ],
      "target_dependencies" : [
        "DistributedCluster"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "it_Clustered_swim_suspension_reachability",
      "module_type" : "SwiftTarget",
      "name" : "it_Clustered_swim_suspension_reachability",
      "path" : "IntegrationTests/tests_01_cluster/it_Clustered_swim_suspension_reachability",
      "product_memberships" : [
        "it_Clustered_swim_suspension_reachability"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "DistributedCluster"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "MultiNodeTestPlugin",
      "module_type" : "PluginTarget",
      "name" : "MultiNodeTestPlugin",
      "path" : "Plugins/MultiNodeTestPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Run MultiNodeTestKit based tests across multiple processes or physical compute nodes",
          "type" : "custom",
          "verb" : "multi-node"
        },
        "permissions" : [
        ],
        "type" : "command"
      },
      "sources" : [
        "plugin.swift"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "MultiNodeTestKitRunner",
      "module_type" : "SwiftTarget",
      "name" : "MultiNodeTestKitRunner",
      "path" : "Sources/MultiNodeTestKitRunner",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "MultiNodeTestKitRunner"
      ],
      "sources" : [
        "MultiNode+LogCapture.swift",
        "MultiNode+TestSuites.swift",
        "NaiveLogger.swift",
        "OutputGrepper.swift",
        "Process+Extensions.swift",
        "Terminal+Rainbow.swift",
        "Time.swift",
        "boot+MultiNodeTestKitRunner+Exec.swift",
        "boot+MultiNodeTestKitRunner+Test.swift",
        "boot+MultiNodeTestKitRunner.swift"
      ],
      "target_dependencies" : [
        "DistributedActorsMultiNodeTests",
        "MultiNodeTestKit"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "MultiNodeTestKit",
      "module_type" : "SwiftTarget",
      "name" : "MultiNodeTestKit",
      "path" : "Sources/MultiNodeTestKit",
      "product_dependencies" : [
        "Backtrace",
        "AsyncAlgorithms",
        "Atomics",
        "OrderedCollections"
      ],
      "product_memberships" : [
        "MultiNodeTestKitRunner"
      ],
      "sources" : [
        "MultiNodeTestConductor.swift",
        "MultiNodeTestKit+Control.swift",
        "MultiNodeTestKit.swift",
        "MultiNodeTestSettings.swift"
      ],
      "target_dependencies" : [
        "DistributedCluster"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DistributedClusterTests",
      "module_type" : "SwiftTarget",
      "name" : "DistributedClusterTests",
      "path" : "Tests/DistributedClusterTests",
      "product_dependencies" : [
        "Atomics"
      ],
      "sources" : [
        "ActorAskTests.swift",
        "ActorIDMetadataTests.swift",
        "ActorIDTests.swift",
        "ActorIsolationFailureHandlingTests.swift",
        "ActorLeakingTests.swift",
        "ActorLifecycleTests.swift",
        "ActorLoggingTests.swift",
        "ActorNamingTests.swift",
        "ActorPathTests.swift",
        "ActorRefAdapterTests.swift",
        "ActorSubReceiveTests.swift",
        "BackoffStrategyTests.swift",
        "BasicClusterSystemLifecycleTests.swift",
        "BehaviorCanonicalizeTests.swift",
        "BehaviorMatchers.swift",
        "BehaviorTests.swift",
        "BlockingReceptacleTests.swift",
        "Clocks/Protobuf/VersionVector+SerializationTests.swift",
        "Clocks/VersionVectorTests.swift",
        "Cluster/AggressiveNodeReplacementClusteredTests.swift",
        "Cluster/AssociationClusteredTests.swift",
        "Cluster/ClusterDiscoveryTests.swift",
        "Cluster/ClusterEventStreamTests.swift",
        "Cluster/ClusterLeaderActionsClusteredTests.swift",
        "Cluster/ClusterLeaderActionsTests.swift",
        "Cluster/ClusterMembershipSnapshotTests.swift",
        "Cluster/ClusterOnDownActionTests.swift",
        "Cluster/Daemon/DaemonJoiningClusteredTests.swift",
        "Cluster/DowningStrategy/DowningClusteredTests.swift",
        "Cluster/DowningStrategy/TimeoutBasedDowningInstanceTests.swift",
        "Cluster/GossipSeenTableTests.swift",
        "Cluster/LeadershipTests.swift",
        "Cluster/MembershipGossipClusteredTests.swift",
        "Cluster/MembershipGossipLogicSimulationTests.swift",
        "Cluster/MembershipGossipTests.swift",
        "Cluster/Protobuf/ClusterEvents+SerializationTests.swift",
        "Cluster/Protobuf/Membership+SerializationTests.swift",
        "Cluster/ProtobufRoundTripTests.swift",
        "Cluster/Reception/OpLogDistributedReceptionistClusteredTests.swift",
        "Cluster/Reception/OpLogStreamTests.swift",
        "Cluster/Reception/_OpLogClusterReceptionistClusteredTests.swift",
        "Cluster/RemoteActorRefProviderTests.swift",
        "Cluster/RemoteMessagingClusteredTests.swift",
        "Cluster/RemotingHandshakeStateMachineTests.swift",
        "Cluster/RemotingTLSClusteredTests.swift",
        "Cluster/SWIM/Protobuf/SWIM+SerializationTests.swift",
        "Cluster/SWIM/SWIMActorClusteredTests.swift",
        "Cluster/ShootTheOtherNodeClusteredTests.swift",
        "Cluster/SystemMessagesRedeliveryTests.swift",
        "Cluster/TestExtensions+MembershipDSL.swift",
        "Cluster/TestExtensions.swift",
        "ClusterSystem+Testing.swift",
        "ClusterSystemTests.swift",
        "CustomStringInterpolationTests.swift",
        "DeadLetterTests.swift",
        "DefaultActorSystem.swift",
        "DispatcherTests.swift",
        "DistributedReceptionistTests.swift",
        "EndpointTests.swift",
        "FixedThreadPoolTests.swift",
        "Gossip/GossiperShellTests.swift",
        "HeapTests.swift",
        "InterceptorTests.swift",
        "LifecycleWatchTests.swift",
        "MPSCLinkedQueueTests.swift",
        "MailboxTests.swift",
        "MembershipTests.swift",
        "Metrics/ActorMemoryTests.swift",
        "Metrics/ActorMetricsTests.swift",
        "Metrics/SWIMActorPeerMetricsTests.swift",
        "MetricsTestKit/MetricsTestKit.swift",
        "NIOExtensionsTests.swift",
        "NodeDeathWatcherTests.swift",
        "NoopLogger.swift",
        "ParentChildActorTests.swift",
        "Pattern/WorkerPoolTests.swift",
        "Plugins/ClusterSingleton/ClusterSingletonPluginClusteredTests.swift",
        "Plugins/ClusterSingleton/ClusterSingletonPluginTests.swift",
        "Plugins/PluginsSettingsTests.swift",
        "RemoteCallTests.swift",
        "RingBufferTests.swift",
        "SerializationPoolTests.swift",
        "SerializationTests.swift",
        "StashBufferTests.swift",
        "StubDistributedActorTests.swift",
        "SupervisionTests.swift",
        "TimeSpecTests.swift",
        "TimersTests.swift",
        "TraversalTests.swift",
        "XCTest+Async.swift",
        "_ActorRefReceptionistTests.swift",
        "_DeathWatchTests.swift",
        "_TerminationWatchTests.swift"
      ],
      "target_dependencies" : [
        "DistributedCluster",
        "DistributedActorsTestKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DistributedCluster",
      "module_type" : "SwiftTarget",
      "name" : "DistributedCluster",
      "path" : "Sources/DistributedCluster",
      "product_dependencies" : [
        "OrderedCollections",
        "Atomics",
        "SWIM",
        "NIO",
        "NIOPosix",
        "NIOFoundationCompat",
        "NIOSSL",
        "NIOExtras",
        "SwiftProtobuf",
        "Logging",
        "Metrics",
        "ServiceDiscovery",
        "Backtrace",
        "AsyncAlgorithms"
      ],
      "product_memberships" : [
        "DistributedCluster",
        "swift-clusterd",
        "it_Clustered_swim_suspension_reachability",
        "MultiNodeTestKitRunner"
      ],
      "sources" : [
        "ActorContext.swift",
        "ActorID.swift",
        "ActorIDMetadataSettings.swift",
        "ActorLogging.swift",
        "ActorMessage+Protobuf.swift",
        "ActorMessages.swift",
        "ActorMetadata.swift",
        "ActorRef+Ask.swift",
        "ActorRefFactory.swift",
        "ActorRefProvider.swift",
        "ActorShell+Children.swift",
        "Adapters.swift",
        "AsyncResult.swift",
        "Backoff.swift",
        "Behaviors.swift",
        "Clocks/Protobuf/VersionVector+Serialization.swift",
        "Clocks/Protobuf/VersionVector.pb.swift",
        "Clocks/VersionVector.swift",
        "Cluster/Association.swift",
        "Cluster/Chaos/FaultyNetworkSimulatingHandler.swift",
        "Cluster/Cluster+Event.swift",
        "Cluster/Cluster+Member.swift",
        "Cluster/Cluster+Membership.swift",
        "Cluster/ClusterControl.swift",
        "Cluster/ClusterEventStream.swift",
        "Cluster/ClusterShell+LeaderActions.swift",
        "Cluster/ClusterShell+Logging.swift",
        "Cluster/ClusterShell.swift",
        "Cluster/ClusterShellState.swift",
        "Cluster/DiscoveryShell.swift",
        "Cluster/DistributedNodeDeathWatcher.swift",
        "Cluster/Downing/DowningSettings.swift",
        "Cluster/Downing/DowningStrategy.swift",
        "Cluster/Downing/TimeoutBasedDowningStrategy.swift",
        "Cluster/HandshakeStateMachine.swift",
        "Cluster/Leadership.swift",
        "Cluster/MembershipGossip/Cluster+MembershipGossip+Serialization.swift",
        "Cluster/MembershipGossip/Cluster+MembershipGossip.swift",
        "Cluster/MembershipGossip/Cluster+MembershipGossipLogic.swift",
        "Cluster/NodeDeathWatcher.swift",
        "Cluster/Protobuf/Cluster+Serialization.swift",
        "Cluster/Protobuf/Cluster.pb.swift",
        "Cluster/Protobuf/ClusterEvents+Serialization.swift",
        "Cluster/Protobuf/ClusterEvents.pb.swift",
        "Cluster/Protobuf/Membership+Serialization.swift",
        "Cluster/Protobuf/Membership.pb.swift",
        "Cluster/Reception/OperationLog.swift",
        "Cluster/Reception/OperationLogClusterReceptionist+Codable.swift",
        "Cluster/Reception/OperationLogDistributedReceptionist.swift",
        "Cluster/Reception/_OperationLogClusterReceptionistBehavior.swift",
        "Cluster/SWIM/ClusterMembership+Converters.swift",
        "Cluster/SWIM/Protobuf/SWIM+Serialization.swift",
        "Cluster/SWIM/Protobuf/SWIM.pb.swift",
        "Cluster/SWIM/SWIMActor+NotUsedCalls.swift",
        "Cluster/SWIM/SWIMActor.swift",
        "Cluster/SystemMessages+Redelivery.swift",
        "Cluster/Transport/RemoteClusterActorPersonality.swift",
        "Cluster/Transport/TransportPipelines.swift",
        "Cluster/Transport/WireMessages.swift",
        "ClusterEndpoint.swift",
        "ClusterNode.swift",
        "ClusterSystem+Clusterd.swift",
        "ClusterSystem.swift",
        "ClusterSystemSettings.swift",
        "Collections/Heap.swift",
        "Collections/MPSCLinkedQueue.swift",
        "Collections/RingBuffer.swift",
        "Collections/_LinkedBlockingQueue.swift",
        "Concurrency/AffinityThreadPool.swift",
        "Concurrency/CountDownLatch.swift",
        "Concurrency/_ClusterCancellableCheckedContinuation.swift",
        "Concurrency/_Condition.swift",
        "Concurrency/_FixedThreadPool.swift",
        "Concurrency/_Thread.swift",
        "Concurrency/locks.swift",
        "DeadLetters.swift",
        "Dispatchers.swift",
        "DistributedActor+Extensions.swift",
        "DistributedActor+Internal.swift",
        "DistributedActor+Messages.swift",
        "DistributedActorContext.swift",
        "Gossip/Gossip+Serialization.swift",
        "Gossip/Gossip+Settings.swift",
        "Gossip/GossipLogic.swift",
        "Gossip/Gossiper+Shell+Serialization.swift",
        "Gossip/Gossiper+Shell.swift",
        "Gossip/Gossiper.swift",
        "Instrumentation/ActorTransportInstrumentation.swift",
        "Instrumentation/ReceptionistInstrumentation.swift",
        "Instrumentation/os_signpost/ActorTransportInstrumentation+os_signpost.swift",
        "Instrumentation/os_signpost/InstrumentationProvider+os_signpost.swift",
        "Instrumentation/os_signpost/ReceptionistInstrumentation+os_signpost.swift",
        "InvocationBehavior.swift",
        "LifecycleMonitoring/LifecycleWatch.swift",
        "LifecycleMonitoring/LifecycleWatchContainer.swift",
        "LifecycleMonitoring/_BehaviorDeathWatch.swift",
        "Metrics/CoreMetrics+Extensions.swift",
        "Metrics/CoreMetrics+MetricsPNCounter.swift",
        "Metrics/Metrics+Actor.swift",
        "Metrics/Metrics+ClusterSystem.swift",
        "Metrics/MetricsSettings.swift",
        "NIO+Extensions.swift",
        "Pattern/WorkerPool.swift",
        "Plugins/ClusterSingleton/ClusterSingleton.swift",
        "Plugins/ClusterSingleton/ClusterSingletonAllocationStrategy.swift",
        "Plugins/ClusterSingleton/ClusterSingletonBoss.swift",
        "Plugins/ClusterSingleton/ClusterSingletonPlugin.swift",
        "Plugins/ClusterSingleton/ClusterSingletonSettings.swift",
        "Plugins/ClusterSystem+Plugins.swift",
        "Plugins/ClusterSystemSettings+Plugins.swift",
        "Props+Metrics.swift",
        "Props.swift",
        "Protobuf/ActorID+Serialization.swift",
        "Protobuf/ActorID.pb.swift",
        "Protobuf/ProtobufMessage+Extensions.swift",
        "Protobuf/SystemMessages+Serialization.swift",
        "Protobuf/SystemMessages.pb.swift",
        "Protobuf/WireProtocol+Serialization.swift",
        "Protobuf/WireProtocol.pb.swift",
        "Receptionist/ActorContext+Receptionist.swift",
        "Receptionist/DistributedReception.swift",
        "Receptionist/DistributedReceptionist.swift",
        "Receptionist/Reception.swift",
        "Receptionist/Receptionist+Serialization.swift",
        "Receptionist/Receptionist.swift",
        "Receptionist/ReceptionistOperations.swift",
        "Receptionist/ReceptionistSettings.swift",
        "Receptionist/SystemReceptionist.swift",
        "Refs+any.swift",
        "Refs.swift",
        "Scheduler.swift",
        "Serialization/ActorRef+Serialization.swift",
        "Serialization/Protobuf/Serialization.pb.swift",
        "Serialization/Serialization+Codable.swift",
        "Serialization/Serialization+Context.swift",
        "Serialization/Serialization+Invocation.swift",
        "Serialization/Serialization+Manifest.swift",
        "Serialization/Serialization+PrimitiveSerializers.swift",
        "Serialization/Serialization+SerializerID.swift",
        "Serialization/Serialization+Serializers+Codable.swift",
        "Serialization/Serialization+Serializers+Protobuf.swift",
        "Serialization/Serialization+Serializers.swift",
        "Serialization/Serialization+Settings.swift",
        "Serialization/Serialization.swift",
        "Serialization/SerializationPool.swift",
        "Serialization/TopLevelBlobCoders.swift",
        "Serialization/TopLevelBytesBlobCoders.swift",
        "Serialization/TopLevelBytesBlobSerializer.swift",
        "Serialization/TopLevelProtobufCoders.swift",
        "Serialization/TopLevelProtobufSerializer.swift",
        "StashBuffer.swift",
        "String+Extensions.swift",
        "Supervision.swift",
        "SystemMessages.swift",
        "Time.swift",
        "TimeSpec.swift",
        "Version.swift",
        "WeakActorDictionary.swift",
        "_ActorNaming.swift",
        "_ActorShell.swift",
        "_BehaviorTimers.swift",
        "_Mailbox.swift",
        "_OrderedSet+Extensions.swift",
        "_Signals.swift",
        "utils.swift"
      ],
      "target_dependencies" : [
        "DistributedActorsConcurrencyHelpers",
        "CDistributedActorsMailbox"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DistributedActorsTestKitTests",
      "module_type" : "SwiftTarget",
      "name" : "DistributedActorsTestKitTests",
      "path" : "Tests/DistributedActorsTestKitTests",
      "sources" : [
        "ActorTestKitTests.swift",
        "ActorTestProbeTests.swift",
        "DeadlineTests.swift",
        "DurationTests.swift"
      ],
      "target_dependencies" : [
        "DistributedCluster",
        "DistributedActorsTestKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DistributedActorsTestKit",
      "module_type" : "SwiftTarget",
      "name" : "DistributedActorsTestKit",
      "path" : "Sources/DistributedActorsTestKit",
      "product_dependencies" : [
        "Atomics"
      ],
      "sources" : [
        "ActorTestKit.swift",
        "ByteBuffer+Testing.swift",
        "Cluster/ClusteredActorSystemsXCTestCase.swift",
        "Cluster/DistributedActor+Assertions.swift",
        "Data+Testing.swift",
        "InspectKit.swift",
        "LogCapture.swift",
        "ShouldMatchers.swift",
        "SingleClusterSystemXCTestCase.swift",
        "Task+Testing.swift",
        "TestProbes+Receptionist.swift",
        "TestProbes.swift"
      ],
      "target_dependencies" : [
        "DistributedCluster",
        "DistributedActorsConcurrencyHelpers"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DistributedActorsMultiNodeTests",
      "module_type" : "SwiftTarget",
      "name" : "DistributedActorsMultiNodeTests",
      "path" : "MultiNodeTests/DistributedActorsMultiNodeTests",
      "product_memberships" : [
        "MultiNodeTestKitRunner"
      ],
      "sources" : [
        "MultiNode+ClusterSingletonTests.swift",
        "MultiNode+MultiNodeConductorTests.swift",
        "MultiNode+ReceptionistTests.swift"
      ],
      "target_dependencies" : [
        "MultiNodeTestKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DistributedActorsConcurrencyHelpers",
      "module_type" : "SwiftTarget",
      "name" : "DistributedActorsConcurrencyHelpers",
      "path" : "Sources/DistributedActorsConcurrencyHelpers",
      "product_memberships" : [
        "DistributedCluster",
        "swift-clusterd",
        "it_Clustered_swim_suspension_reachability",
        "MultiNodeTestKitRunner"
      ],
      "sources" : [
        "lock.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CDistributedActorsMailbox",
      "module_type" : "ClangTarget",
      "name" : "CDistributedActorsMailbox",
      "path" : "Sources/CDistributedActorsMailbox",
      "product_memberships" : [
        "DistributedCluster",
        "swift-clusterd",
        "it_Clustered_swim_suspension_reachability",
        "MultiNodeTestKitRunner"
      ],
      "sources" : [
        "backtrace_support.c",
        "c_mpsc_linked_queue.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/apple/swift-distributed-actors/main
Repository:               apple/swift-distributed-actors
Swift version used:       6.3
Target:                   DistributedCluster
Extracting symbol information for 'DistributedCluster'...
Finished extracting symbol information for 'DistributedCluster'. (37.44s)
Building documentation for 'DistributedCluster'...
warning: Article 'Receptionist.md' (Receptionist) would override structure 'Receptionist'.
DocC computes unique URLs for symbols, even if they have the same name, but doesn't account for article filenames that collide with symbols because of a bug.
Until rdar://79745455 (issue #593) is fixed, DocC favors the symbol in this collision and drops the article to have deterministic behavior.
--> Receptionist.md
Rename 'Receptionist.md'
Finished building documentation for 'DistributedCluster' (1.44s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-actors/main
Updating https://github.com/apple/swift-cluster-membership
Updated https://github.com/apple/swift-cluster-membership (0.40s)
Updating https://github.com/apple/swift-asn1.git
Updating https://github.com/apple/swift-nio.git
Updating https://github.com/apple/swift-metrics.git
Updating https://github.com/apple/swift-atomics
Updating https://github.com/apple/swift-nio-ssl
Updating https://github.com/apple/swift-nio-http2.git
Updating https://github.com/swift-server/swift-backtrace
Updated https://github.com/apple/swift-asn1.git (0.44s)
Updating https://github.com/apple/swift-async-algorithms
Updated https://github.com/apple/swift-nio-http2.git (0.55s)
Updated https://github.com/swift-server/swift-backtrace (0.55s)
Updated https://github.com/apple/swift-atomics (0.55s)
Updated https://github.com/apple/swift-nio-ssl (0.55s)
Updated https://github.com/apple/swift-metrics.git (0.55s)
Updating https://github.com/apple/swift-http-structured-headers.git
Updating https://github.com/apple/swift-certificates.git
Updating https://github.com/apple/swift-system.git
Updating https://github.com/apple/swift-service-discovery
Updating https://github.com/apple/swift-argument-parser
Updated https://github.com/apple/swift-nio.git (0.72s)
Updating https://github.com/apple/swift-crypto.git
Updated https://github.com/apple/swift-async-algorithms (0.46s)
Updating https://github.com/apple/swift-algorithms.git
Updated https://github.com/apple/swift-argument-parser (0.48s)
Updated https://github.com/apple/swift-system.git (0.48s)
Updated https://github.com/apple/swift-service-discovery (0.48s)
Updating https://github.com/apple/swift-log.git
Updating https://github.com/apple/swift-collections
Updating https://github.com/apple/swift-http-types.git
Updated https://github.com/apple/swift-certificates.git (0.51s)
Updating https://github.com/apple/swift-nio-extras.git
Updated https://github.com/apple/swift-http-structured-headers.git (0.55s)
Updating https://github.com/apple/swift-numerics.git
Updated https://github.com/apple/swift-crypto.git (0.49s)
Updating https://github.com/swift-server/swift-service-lifecycle.git
Updated https://github.com/apple/swift-algorithms.git (0.44s)
Updating https://github.com/apple/swift-protobuf
Updated https://github.com/apple/swift-nio-extras.git (0.44s)
Fetching https://github.com/swiftlang/swift-docc-plugin
Updated https://github.com/apple/swift-collections (0.53s)
Updated https://github.com/apple/swift-http-types.git (0.53s)
Updated https://github.com/apple/swift-log.git (0.53s)
Updated https://github.com/swift-server/swift-service-lifecycle.git (0.39s)
Updated https://github.com/apple/swift-numerics.git (0.51s)
Updated https://github.com/apple/swift-protobuf (0.63s)
[1/2277] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.16s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.10.1 (3.28s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.53s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.34.0 (0.57s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.98.0 (0.62s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.7.1 (0.55s)
Computing version for https://github.com/apple/swift-service-discovery
Computed https://github.com/apple/swift-service-discovery at 1.4.1 (0.53s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.4.1 (0.61s)
Computing version for https://github.com/apple/swift-async-algorithms
Computed https://github.com/apple/swift-async-algorithms at 1.1.3 (0.55s)
Computing version for https://github.com/swift-server/swift-backtrace
Computed https://github.com/swift-server/swift-backtrace at 1.3.5 (0.60s)
Computing version for https://github.com/apple/swift-protobuf
Computed https://github.com/apple/swift-protobuf at 1.37.0 (0.56s)
Computing version for https://github.com/apple/swift-nio-ssl
Computed https://github.com/apple/swift-nio-ssl at 2.37.0 (0.57s)
Computing version for https://github.com/apple/swift-atomics
Computed https://github.com/apple/swift-atomics at 1.3.0 (0.55s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.11.0 (0.55s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.7.0 (0.61s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.19.0 (0.61s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.58s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.7.0 (0.54s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.5.1 (0.55s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.43.0 (0.54s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.52s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 4.4.0 (0.64s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.1 (0.50s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (0.60s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3674] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.07s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.73s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version--6988338F2F200930.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Mixin+Equals.swift
[8/57] Compiling SymbolKit Mixin+Hash.swift
[9/57] Compiling SymbolKit Mixin.swift
[10/57] Compiling SymbolKit LineList.swift
[11/57] Compiling SymbolKit Position.swift
[12/57] Compiling SymbolKit SemanticVersion.swift
[13/57] Compiling SymbolKit AccessControl.swift
[14/57] Compiling SymbolKit Availability.swift
[15/57] Compiling SymbolKit AvailabilityItem.swift
[16/57] Compiling SymbolKit Domain.swift
[17/57] Compiling SymbolKit Identifier.swift
[18/57] Compiling SymbolKit KindIdentifier.swift
[19/57] Compiling SymbolKit Location.swift
[20/57] Compiling SymbolKit Mutability.swift
[21/57] Compiling SymbolKit DeclarationFragments.swift
[22/57] Compiling SymbolKit Fragment.swift
[23/57] Compiling SymbolKit FragmentKind.swift
[24/57] Compiling SymbolKit FunctionParameter.swift
[25/57] Compiling SymbolKit FunctionSignature.swift
[26/57] Compiling SymbolKit Names.swift
[27/57] Compiling SymbolKit SPI.swift
[28/57] Compiling SymbolKit Snippet.swift
[29/57] Compiling SymbolKit Extension.swift
[30/57] Compiling SymbolKit SourceRange.swift
[31/57] Compiling SymbolKit Metadata.swift
[32/57] Compiling SymbolKit Module.swift
[33/57] Compiling SymbolKit OperatingSystem.swift
[34/57] Compiling SymbolKit Platform.swift
[35/57] Compiling SymbolKit Relationship.swift
[36/57] Compiling SymbolKit RelationshipKind.swift
[37/57] Compiling SymbolKit SourceOrigin.swift
[38/57] Compiling SymbolKit GenericConstraints.swift
[39/57] Compiling SymbolKit Swift.swift
[40/57] Compiling SymbolKit GenericConstraint.swift
[41/57] Compiling SymbolKit GenericParameter.swift
[42/57] Compiling SymbolKit Generics.swift
[43/57] Compiling SymbolKit Namespace.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (7.73s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'DistributedCluster' complete! (5.69s)
    3014
20	/Users/admin/builder/spi-builder-workspace/.docs/apple/swift-distributed-actors/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/apple/swift-distributed-actors/main
File count: 3014
Doc size:   20.0MB
Preparing doc bundle ...
Uploading prod-apple-swift-distributed-actors-main-1a596af0.zip to s3://spi-docs-inbox/prod-apple-swift-distributed-actors-main-1a596af0.zip
Copying... [10%]
Copying... [20%]
Copying... [31%]
Copying... [41%]
Copying... [51%]
Copying... [61%]
Copying... [70%]
Copying... [80%]
Copying... [91%]
Copying... [100%]
Done.