Skip to content

Commit 8843065

Browse files
authored
Add NIOSSL dependency (#74)
We want to enable TLS Redis Connections out of the box. For this to work we need to link NIOSSL. This patch just adds the dependency. Most of our adopters have NIOSSL very likely in their dependency graph anyway.
1 parent 95b2d06 commit 8843065

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Package.swift

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ let package = Package(
2727
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
2828
.package(url: "https://github.com/apple/swift-metrics.git", "1.0.0" ..< "3.0.0"),
2929
.package(url: "https://github.com/apple/swift-nio.git", from: "2.43.0"),
30+
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.23.1"),
3031
],
3132
targets: [
3233
.target(
@@ -36,6 +37,7 @@ let package = Package(
3637
.product(name: "NIOPosix", package: "swift-nio"),
3738
.product(name: "NIO", package: "swift-nio"),
3839
.product(name: "NIOConcurrencyHelpers", package: "swift-nio"),
40+
.product(name: "NIOSSL", package: "swift-nio-ssl"),
3941
.product(name: "Atomics", package: "swift-atomics"),
4042
.product(name: "Logging", package: "swift-log"),
4143
.product(name: "Metrics", package: "swift-metrics")

0 commit comments

Comments
 (0)