-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
18 lines (17 loc) · 860 Bytes
/
Copy pathPackage.swift
File metadata and controls
18 lines (17 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "ButterBot",
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", .upToNextMinor(from: "3.1.0")),
.package(url: "https://github.com/vapor/fluent-postgresql.git", .upToNextMinor(from: "1.0.0")),
.package(url: "https://github.com/vapor/leaf.git", .upToNextMinor(from: "3.0.1")),
.package(url: "https://github.com/crossroadlabs/Regex", .upToNextMinor(from: "1.1.0")),
.package(url: "https://github.com/PoissonBallon/google-analytics-provider.git", from: "0.0.2")
],
targets: [
.target(name: "App", dependencies: ["FluentPostgreSQL", "Leaf", "Vapor", "Regex", "GoogleAnalyticsProvider"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)