-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
22 lines (19 loc) · 954 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
// swift-tools-version:4.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swift-server-app",
products: [
.library(name: "SwiftServerApp", targets: ["SwiftServerApp"]),
],
dependencies: [
.package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", from: "3.0.15"),
.package(url: "https://github.com/PerfectlySoft/Perfect-Logger.git", from: "3.0.2"),
.package(url: "https://github.com/PerfectlySoft/Perfect-RequestLogger.git", from: "3.0.2"),
.package(url: "https://github.com/Molbie/swift-PostgreSQL.git", from: "1.0.0"),
.package(url: "https://github.com/Molbie/Outlaw.git", from: "2.0.2"),
],
targets: [
.target(name: "SwiftServerApp", dependencies: ["PerfectHTTPServer", "PerfectLogger", "PerfectRequestLogger", "Outlaw", "SwiftPostgreSQL"])
]
)