-
Notifications
You must be signed in to change notification settings - Fork 11
/
Package.swift
29 lines (28 loc) · 1.08 KB
/
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
29
// swift-tools-version:4.1
import PackageDescription
let package = Package(
name: "Perfect-LocalAuthentication-PostgreSQL",
products: [
.library(name: "PerfectLocalAuthentication", targets: ["PerfectLocalAuthentication"])
],
dependencies: [
.package(url: "https://github.com/iamjono/JSONConfig.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-RequestLogger.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-SMTP.git", from: "3.0.0"),
.package(url: "https://github.com/SwiftORM/Postgres-StORM.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-Session-PostgreSQL.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-HTTP.git", from: "3.0.0"),
],
targets: [
.target(name: "PerfectLocalAuthentication", dependencies: [
"JSONConfig",
"PerfectRequestLogger",
"PerfectSMTP",
"PostgresStORM",
"PerfectSessionPostgreSQL",
"PerfectMustache",
"PerfectHTTP"
])
]
)