From 8bbfaf24372b84ee135882026b3e1b996de67a49 Mon Sep 17 00:00:00 2001 From: Brandon Evans Date: Thu, 6 Aug 2020 20:47:54 -0600 Subject: [PATCH] Use Swift tools version 5.2 --- Package.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Package.swift b/Package.swift index a3d7547..36bad7f 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:5.1 +// swift-tools-version:5.2 import PackageDescription let package = Package( @@ -16,7 +16,7 @@ let package = Package( .package(url: "https://github.com/mxcl/Path.swift.git", .upToNextMinor(from: "0.16.0")), .package(url: "https://github.com/mxcl/Version.git", .upToNextMinor(from: "1.0.3")), .package(url: "https://github.com/mxcl/PromiseKit.git", .upToNextMinor(from: "6.8.3")), - .package(url: "https://github.com/PromiseKit/Foundation.git", .upToNextMinor(from: "3.3.1")), + .package(name: "PMKFoundation", url: "https://github.com/PromiseKit/Foundation.git", .upToNextMinor(from: "3.3.1")), .package(url: "https://github.com/scinfu/SwiftSoup.git", .upToNextMinor(from: "2.0.0")), .package(url: "https://github.com/mxcl/LegibleError.git", .upToNextMinor(from: "1.0.1")), .package(url: "https://github.com/kishikawakatsumi/KeychainAccess.git", .upToNextMinor(from: "3.2.0")) @@ -33,7 +33,7 @@ let package = Package( .target( name: "XcodesKit", dependencies: [ - "AppleAPI", "Path", "Version", "PromiseKit", "PMKFoundation", "SwiftSoup", "LegibleError", "KeychainAccess" + "AppleAPI", .product(name: "Path", package: "Path.swift"), "Version", "PromiseKit", "PMKFoundation", "SwiftSoup", "LegibleError", "KeychainAccess" ]), .testTarget( name: "XcodesKitTests",