forked from vapor/postgres-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
28 lines (27 loc) · 966 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// swift-tools-version:5.2
import PackageDescription
let package = Package(
name: "postgres-kit",
platforms: [
.macOS(.v10_15)
],
products: [
.library(name: "PostgresKit", targets: ["PostgresKit"]),
],
dependencies: [
.package(url: "https://github.com/vapor/postgres-nio.git", from: "1.7.2"),
.package(url: "https://github.com/vapor/sql-kit.git", from: "3.16.0"),
.package(url: "https://github.com/vapor/async-kit.git", from: "1.0.0"),
],
targets: [
.target(name: "PostgresKit", dependencies: [
.product(name: "AsyncKit", package: "async-kit"),
.product(name: "PostgresNIO", package: "postgres-nio"),
.product(name: "SQLKit", package: "sql-kit"),
]),
.testTarget(name: "PostgresKitTests", dependencies: [
.target(name: "PostgresKit"),
.product(name: "SQLKitBenchmark", package: "sql-kit"),
]),
]
)