-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
25 lines (23 loc) · 877 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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "Hello",
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "3.1.0"),
.package(url: "https://github.com/vapor/fluent-postgresql.git", from: "1.0.0"),
.package(url: "https://github.com/vapor/auth.git", from: "2.0.1"),
.package(url: "https://github.com/vapor-community/pagination.git", from: "1.0.7"),
.package(url: "https://github.com/IBM-Swift/Swift-SMTP", .upToNextMinor(from: "5.1.0"))
],
targets: [
.target(name: "App", dependencies: [
"Vapor",
"Authentication",
"SwiftSMTP",
"Pagination",
"FluentPostgreSQL"
]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)