From a3275648dfd6bef1b9bda76b193f417710e4af48 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Tue, 3 Jun 2025 10:54:26 -0700 Subject: [PATCH] [SPARK-52390] Upgrade `gRPC Swift` libraries to `grpc-swift-2`-based ones --- Package.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Package.swift b/Package.swift index afa404a..20279ed 100644 --- a/Package.swift +++ b/Package.swift @@ -34,16 +34,16 @@ let package = Package( targets: ["SparkConnect"]) ], dependencies: [ - .package(url: "https://github.com/grpc/grpc-swift.git", exact: "2.2.2"), - .package(url: "https://github.com/grpc/grpc-swift-protobuf.git", exact: "1.3.0"), - .package(url: "https://github.com/grpc/grpc-swift-nio-transport.git", exact: "1.2.2"), + .package(url: "https://github.com/grpc/grpc-swift-2.git", exact: "2.0.0"), + .package(url: "https://github.com/grpc/grpc-swift-protobuf.git", exact: "2.0.0"), + .package(url: "https://github.com/grpc/grpc-swift-nio-transport.git", exact: "2.0.0"), .package(url: "https://github.com/google/flatbuffers.git", branch: "v25.2.10"), ], targets: [ .target( name: "SparkConnect", dependencies: [ - .product(name: "GRPCCore", package: "grpc-swift"), + .product(name: "GRPCCore", package: "grpc-swift-2"), .product(name: "GRPCProtobuf", package: "grpc-swift-protobuf"), .product(name: "GRPCNIOTransportHTTP2", package: "grpc-swift-nio-transport"), .product(name: "FlatBuffers", package: "flatbuffers"),