forked from skelpo/UserManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
33 lines (30 loc) · 1.44 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
30
31
32
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "users",
products: [
.library(name: "App", targets: ["App"]),
.executable(name: "Run", targets: ["Run"])
],
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/fluent-mysql.git", from: "3.0.0-rc"),
.package(url: "https://github.com/vapor/jwt.git", from: "3.0.0-rc"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "0.9.0"),
.package(url: "https://github.com/vapor-community/sendgrid-provider.git", from: "3.0.3"),
.package(url: "https://github.com/vapor-community/lingo-vapor.git", from: "3.0.0"),
.package(url: "https://github.com/skelpo/JWTDataProvider.git", from: "0.10.0"),
.package(url: "https://github.com/skelpo/JWTVapor.git", from: "0.9.0"),
.package(url: "https://github.com/skelpo/SkelpoMiddleware.git", from: "1.4.0")
],
targets: [
.target(name: "App", dependencies: ["Vapor", "FluentMySQL", "JWT", "CryptoSwift", "SendGrid", "LingoVapor", "JWTDataProvider", "JWTVapor", "SkelpoMiddleware"],
exclude: [
"Config",
"Public",
"Resources",
]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)