Skip to content

Commit 3cfe6fc

Browse files
committed
add nio ssl as explicit dep
1 parent 870c4b7 commit 3cfe6fc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Package.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@ let package = Package(
2222
// Event-driven network application framework for high performance protocol servers & clients, non-blocking.
2323
.package(url: "https://github.com/apple/swift-nio.git", from: "1.0.0"),
2424

25+
// SSL support for Swift NIO
26+
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "1.0.0"),
27+
2528
// *️⃣ Build SQL queries in Swift. Extensible, protocol-based design that supports DQL, DML, and DDL.
2629
.package(url: "https://github.com/vapor/sql.git", from: "2.1.0"),
2730
],
2831
targets: [
29-
.target(name: "PostgreSQL", dependencies: ["Async", "Bits", "Core", "Crypto", "DatabaseKit", "NIO", "Service", "SQL"]),
32+
.target(name: "PostgreSQL", dependencies: ["Async", "Bits", "Core", "Crypto", "DatabaseKit", "NIO", "NIOOpenSSL", "Service", "SQL"]),
3033
.testTarget(name: "PostgreSQLTests", dependencies: ["Core", "PostgreSQL", "SQLBenchmark"]),
3134
]
3235
)

0 commit comments

Comments
 (0)