-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
29 lines (27 loc) · 889 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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "peregrine",
platforms: [
.macOS(.v13),
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
.package(url: "https://github.com/sushichop/Puppy", from: "0.7.0"),
.package(
url: "https://github.com/Zollerboy1/SwiftCommand.git",
from: "1.2.0"
),
],
targets: [
.executableTarget(
name: "peregrine",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "SwiftCommand", package: "SwiftCommand"),
.product(name: "Puppy", package: "Puppy"),
]
),
.testTarget(name: "PeregrineTests", dependencies: ["peregrine"]),
]
)