-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPackage.swift
27 lines (25 loc) · 984 Bytes
/
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
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "tmdb",
platforms: [.macOS(.v10_15)],
products: [
.executable(
name: "tmdb",
targets: ["MovieDB"]),
],
dependencies: [
.package(url: "https://github.com/nerdsupremacist/GraphZahl.git", from: "0.1.0-alpha.46"),
.package(url: "https://github.com/nerdsupremacist/graphzahl-vapor-support.git", from: "0.1.0-alpha.8"),
.package(url: "https://github.com/nerdsupremacist/Cache.git", .branch("master")),
.package(url: "https://github.com/vapor/vapor.git", from: "4.29.1"),
.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.9.1"),
],
targets: [
.target(
name: "MovieDB",
dependencies: ["GraphZahlVaporSupport", "GraphZahl", "Cache", "Vapor"]
),
]
)