Skip to content

Commit ae13638

Browse files
authored
Use exact SwiftCrypto version to work around bootstrapping failure (#6428)
There's a regression in Swift Crypto 2.4.1 on Linux that makes our Linux bootstrapping jobs to fail.
1 parent 5d7314a commit ae13638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
747747
// dependency version changes here with those projects.
748748
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "1.2.2")),
749749
.package(url: "https://github.com/apple/swift-driver.git", branch: relatedDependenciesBranch),
750-
.package(url: "https://github.com/apple/swift-crypto.git", .upToNextMinor(from: "2.4.0")),
750+
.package(url: "https://github.com/apple/swift-crypto.git", exact: "2.4.0"),
751751
.package(url: "https://github.com/apple/swift-system.git", .upToNextMinor(from: "1.1.1")),
752752
.package(url: "https://github.com/apple/swift-collections.git", .upToNextMinor(from: "1.0.1")),
753753
.package(url: "https://github.com/apple/swift-certificates.git", .upToNextMinor(from: "0.1.0")),

0 commit comments

Comments
 (0)