Skip to content

Commit bb703a6

Browse files
committed
Bump minimum required tools-version to 5.7
1 parent 527a852 commit bb703a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.5
1+
// swift-tools-version:5.7
22

33
//===----------------------------------------------------------------------===//
44
//
@@ -706,7 +706,7 @@ let relatedDependenciesBranch = "main"
706706
if ProcessInfo.processInfo.environment["SWIFTPM_LLBUILD_FWK"] == nil {
707707
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
708708
package.dependencies += [
709-
.package(url: "https://github.com/apple/swift-llbuild.git", .branch(relatedDependenciesBranch)),
709+
.package(url: "https://github.com/apple/swift-llbuild.git", branch: relatedDependenciesBranch),
710710
]
711711
} else {
712712
// In Swift CI, use a local path to llbuild to interoperate with tools
@@ -720,12 +720,12 @@ if ProcessInfo.processInfo.environment["SWIFTPM_LLBUILD_FWK"] == nil {
720720

721721
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
722722
package.dependencies += [
723-
.package(url: "https://github.com/apple/swift-tools-support-core.git", .branch(relatedDependenciesBranch)),
723+
.package(url: "https://github.com/apple/swift-tools-support-core.git", branch: relatedDependenciesBranch),
724724
// The 'swift-argument-parser' version declared here must match that
725725
// used by 'swift-driver' and 'sourcekit-lsp'. Please coordinate
726726
// dependency version changes here with those projects.
727727
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "1.2.2")),
728-
.package(url: "https://github.com/apple/swift-driver.git", .branch(relatedDependenciesBranch)),
728+
.package(url: "https://github.com/apple/swift-driver.git", branch: relatedDependenciesBranch),
729729
.package(url: "https://github.com/apple/swift-crypto.git", .upToNextMinor(from: minimumCryptoVersion)),
730730
.package(url: "https://github.com/apple/swift-system.git", .upToNextMinor(from: "1.1.1")),
731731
.package(url: "https://github.com/apple/swift-collections.git", .upToNextMinor(from: "1.0.1")),

0 commit comments

Comments
 (0)