Skip to content

Commit fc35705

Browse files
authored
Require the correct minimum version of swift-crypto (#555)
KDF was added to swift-crypto in 3.9.0. We now require that as a minimum via the SCRAM-SHA-256 authentication method.
1 parent 9ce15a4 commit fc35705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let package = Package(
2424
.package(url: "https://github.com/apple/swift-nio.git", from: "2.81.0"),
2525
.package(url: "https://github.com/apple/swift-nio-transport-services.git", from: "1.19.0"),
2626
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.25.0"),
27-
.package(url: "https://github.com/apple/swift-crypto.git", "2.0.0" ..< "4.0.0"),
27+
.package(url: "https://github.com/apple/swift-crypto.git", "3.9.0" ..< "4.0.0"),
2828
.package(url: "https://github.com/apple/swift-metrics.git", from: "2.4.1"),
2929
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.3"),
3030
.package(url: "https://github.com/swift-server/swift-service-lifecycle.git", from: "2.5.0"),

0 commit comments

Comments
 (0)