-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
21 lines (19 loc) · 965 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "ms-assets",
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/fluent-postgresql.git", from: "1.0.0-rc"),
.package(url: "https://github.com/vapor/multipart.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/crypto.git", from: "3.3.0"),
.package(url: "https://github.com/gperdomor/S3", .branch("patch-1")), // TODO: Update for LiveUI when they accept our pr
.package(url: "https://github.com/vapor-community/vapor-ext.git", from: "0.3.2"),
],
targets: [
.target(name: "App", dependencies: ["FluentPostgreSQL", "Vapor", "Multipart", "S3", "VaporExt"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)