This is an automated email from the ASF dual-hosted git repository. bce pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/beam-swift.git
commit 597f7d540febb5f28bad1237bf84e92328adaafa Author: Byron Ellis <[email protected]> AuthorDate: Tue Oct 3 13:05:00 2023 -0700 Remove unused dependencies and fix platforms for macOS builds --- Package.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 5270af2..b2ef1bd 100644 --- a/Package.swift +++ b/Package.swift @@ -28,7 +28,6 @@ let dependencies: [Package.Dependency] = [ .package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.0"), // Additional Transform Dependencies - .package(url: "https://github.com/awslabs/aws-sdk-swift.git", from: "0.23.0"), .package(url: "https://github.com/googleapis/google-auth-library-swift",from:"0.0.0"), // Swift Macro Support @@ -42,6 +41,9 @@ let dependencies: [Package.Dependency] = [ let package = Package( name: "ApacheBeam", + platforms:[ + .macOS("13.0") + ], products: [ // Products define the executables and libraries a package produces, making them visible to other packages. .library( @@ -57,7 +59,6 @@ let package = Package( dependencies: [ .product(name: "GRPC",package:"grpc-swift"), .product(name: "Logging",package:"swift-log"), - .product(name: "AWSS3",package:"aws-sdk-swift"), .product(name: "OAuth2", package:"google-auth-library-swift"), .product(name: "ArgumentParser", package:"swift-argument-parser") ]
