forked from codewinsdotcom/PostgresClientKit
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (22 loc) · 671 Bytes
/
Package.swift
File metadata and controls
24 lines (22 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "PostgresClientKit",
products: [
.library(
name: "PostgresClientKit",
targets: ["PostgresClientKit"]),
],
dependencies: [
.package(url: "https://github.com/Kitura/BlueSocket.git", from: "2.0.0"),
.package(url: "https://github.com/Kitura/BlueSSLService", from: "2.0.0")
],
targets: [
.target(
name: "PostgresClientKit",
dependencies: ["Socket", "SSLService"]),
.testTarget(
name: "PostgresClientKitTests",
dependencies: ["PostgresClientKit"]),
]
)