-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
19 lines (16 loc) · 765 Bytes
/
Package.swift
File metadata and controls
19 lines (16 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "App",
dependencies: [
.package(url: "https://github.com/ct4h/Telegrammer.git", from: "0.4.2"),
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
.package(url: "https://github.com/BrettRToomey/Jobs.git", from: "1.1.1"),
.package(url: "https://github.com/vapor/fluent-postgresql.git", from: "1.0.0"),
.package(url: "https://github.com/vapor/fluent-mysql.git", from: "3.0.0")
],
targets: [
.target(name: "App", dependencies: ["Vapor", "Telegrammer", "Jobs", "FluentPostgreSQL", "FluentMySQL"]),
]
)