forked from KittyMac/Sextant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
31 lines (29 loc) · 890 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
29
30
31
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "Sextant",
platforms: [
.macOS(.v10_13), .iOS(.v11)
],
products: [
.library(name: "Sextant", targets: ["Sextant"]),
],
dependencies: [
.package(url: "https://github.com/KittyMac/Chronometer.git", from: "0.1.0"),
.package(url: "https://github.com/KittyMac/Hitch.git", from: "0.4.0"),
.package(url: "https://github.com/KittyMac/Spanker.git", from: "0.2.36"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0"),
],
targets: [
.target(
name: "Sextant",
dependencies: [
"Hitch",
"Spanker",
"Chronometer"
]),
.testTarget(
name: "SextantTests",
dependencies: ["Sextant"]),
]
)