-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
28 lines (26 loc) · 879 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
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: "mst",
products: [
.library(name: "MstKit", targets: ["MstKit"]),
.executable(name: "mst", targets: ["mst"])
],
dependencies: [
.package(url: "https://github.com/Carthage/Commandant.git", from: "0.16.0"),
.package(url: "https://github.com/thoughtbot/Curry.git", from: "4.0.2"),
.package(url: "https://github.com/onevcat/Rainbow", from: "3.0.0"),
.package(url: "https://github.com/JohnSundell/Files", from: "3.1.0")
],
targets: [
.target(
name: "MstKit",
dependencies: ["Rainbow", "Files"]
),
.target(
name: "mst",
dependencies: ["MstKit", "Commandant", "Curry", "Rainbow"])
],
swiftLanguageVersions: [.v4_2, .v5]
)