Skip to content

Commit

Permalink
Merge pull request #121 from vapor/nio-ssl-fix
Browse files Browse the repository at this point in the history
add nio ssl as explicit dep
  • Loading branch information
tanner0101 authored Feb 12, 2019
2 parents 870c4b7 + 49de70b commit cbe5505
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,14 @@ let package = Package(
// Event-driven network application framework for high performance protocol servers & clients, non-blocking.
.package(url: "https://github.com/apple/swift-nio.git", from: "1.0.0"),

// SSL support for Swift NIO
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "1.0.0"),

// *️⃣ Build SQL queries in Swift. Extensible, protocol-based design that supports DQL, DML, and DDL.
.package(url: "https://github.com/vapor/sql.git", from: "2.1.0"),
],
targets: [
.target(name: "PostgreSQL", dependencies: ["Async", "Bits", "Core", "Crypto", "DatabaseKit", "NIO", "Service", "SQL"]),
.target(name: "PostgreSQL", dependencies: ["Async", "Bits", "Core", "Crypto", "DatabaseKit", "NIO", "NIOOpenSSL", "Service", "SQL"]),
.testTarget(name: "PostgreSQLTests", dependencies: ["Core", "PostgreSQL", "SQLBenchmark"]),
]
)
4 changes: 2 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
steps:
- run:
name: Clone Fluent PostgreSQL
command: git clone -b master https://github.com/vapor/fluent-postgresql.git
command: git clone -b 1 https://github.com/vapor/fluent-postgresql.git
working_directory: ~/
- run:
name: Switch Fluent PostgreSQL to this PostgreSQL revision
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
steps:
- run:
name: Clone Fluent PostgreSQL
command: git clone -b master https://github.com/vapor/fluent-postgresql.git
command: git clone -b 1 https://github.com/vapor/fluent-postgresql.git
working_directory: ~/
- run:
name: Switch Fluent PostgreSQL to this PostgreSQL revision
Expand Down

0 comments on commit cbe5505

Please sign in to comment.