-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
23 lines (21 loc) · 996 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
// 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: "Donut",
products: [
.executable(name: "donut", targets: ["Donut"]),
.library(name: "DonutKit", targets: ["DonutKit"]),
],
dependencies: [
.package(url: "https://github.com/Carthage/ReactiveTask.git", from: "0.14.0"),
.package(url: "https://github.com/Carthage/Commandant.git", from: "0.13.0"),
.package(url: "https://github.com/thoughtbot/Curry.git", from: "4.0.1"),
.package(url: "https://github.com/yutailang0119/ProgressSpinnerKit", from: "0.1.0")
],
targets: [
.target(name: "Donut", dependencies: ["ReactiveTask", "Commandant", "Curry", "DonutKit"]),
.target(name: "DonutKit", dependencies: ["ReactiveTask", "ProgressSpinnerKit"]),
.testTarget(name: "DonutTests", dependencies: ["Donut"], path: "Tests"),
]
)