-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
20 lines (18 loc) · 749 Bytes
/
Package.swift
File metadata and controls
20 lines (18 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import PackageDescription
let package = Package(
name: "Perfect-LocalAuthentication-PostgreSQL",
targets: [
Target(
name: "LocalAuthentication",
dependencies: []
)
],
dependencies: [
.Package(url: "https://github.com/iamjono/JSONConfig.git", majorVersion: 1),
.Package(url: "https://github.com/PerfectlySoft/Perfect-RequestLogger.git", majorVersion: 1),
.Package(url: "https://github.com/PerfectlySoft/Perfect-SMTP", majorVersion: 1),
.Package(url: "https://github.com/SwiftORM/Postgres-StORM.git", majorVersion: 1),
.Package(url: "https://github.com/PerfectlySoft/Perfect-Session-PostgreSQL.git", majorVersion: 1),
.Package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", majorVersion: 2),
]
)