-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
28 lines (26 loc) · 1.19 KB
/
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
28
// 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: "topic-workflow",
products: [
.executable(name: "topic-workflow", targets: ["topic-workflow"]),
.library(name: "TopicWorkflowKit", targets: ["TopicWorkflowKit"])
],
dependencies: [
.package(url: "https://github.com/nvzqz/FileKit.git", from: "6.0.0"),
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON.git", from: "5.0.0"),
.package(url: "https://github.com/Carthage/Commandant.git", .upToNextMinor(from: "0.16.0")),
.package(url: "https://github.com/jpsim/Yams.git", .upToNextMinor(from: "2.0.0")),
.package(url: "https://github.com/phimage/VaporMailgunService.git", .branch("HEAD")),
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.2.3")
],
targets: [
.target(
name: "TopicWorkflowKit",
dependencies: ["FileKit", "SwiftyJSON", "Commandant", "Yams", "Mailgun", "AnyCodable"]),
.target(
name: "topic-workflow",
dependencies: ["TopicWorkflowKit"])
]
)