-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
34 lines (30 loc) · 1.43 KB
/
Package.swift
File metadata and controls
34 lines (30 loc) · 1.43 KB
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
33
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "creditCaculator",
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
// 🔵 Swift ORM (queries, models, relations, etc) built on Mysql.
.package(url: "https://github.com/vapor/fluent-mysql.git", from: "3.0.0"),
// Auth
.package(url: "https://github.com/vapor/auth.git", from: "2.0.0"),
// vapor server
.package(url: "https://github.com/vapor/crypto.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/redis.git", from: "3.0.0-rc"),
.package(url: "https://github.com/vapor/multipart.git", from: "3.0.0"),
// log format
.package(url: "https://github.com/vapor-community/swiftybeaver-provider.git", from: "3.1.0"),
.package(url:"https://github.com/malcommac/SwiftDate.git",from: "5.0.13")
],
targets: [
.target(name: "App", dependencies: ["FluentMySQL", "Vapor","Authentication",
"Crypto",
"Redis",
"Multipart",
"SwiftyBeaverProvider",
"SwiftDate"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)