Skip to content

Commit cbe5505

Browse files
authored
Merge pull request vapor#121 from vapor/nio-ssl-fix
add nio ssl as explicit dep
2 parents 870c4b7 + 49de70b commit cbe5505

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Diff for: 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
)

Diff for: circle.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
- run:
5656
name: Clone Fluent PostgreSQL
57-
command: git clone -b master https://github.com/vapor/fluent-postgresql.git
57+
command: git clone -b 1 https://github.com/vapor/fluent-postgresql.git
5858
working_directory: ~/
5959
- run:
6060
name: Switch Fluent PostgreSQL to this PostgreSQL revision
@@ -93,7 +93,7 @@ jobs:
9393
steps:
9494
- run:
9595
name: Clone Fluent PostgreSQL
96-
command: git clone -b master https://github.com/vapor/fluent-postgresql.git
96+
command: git clone -b 1 https://github.com/vapor/fluent-postgresql.git
9797
working_directory: ~/
9898
- run:
9999
name: Switch Fluent PostgreSQL to this PostgreSQL revision

0 commit comments

Comments
 (0)