-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (27 loc) · 792 Bytes
/
Copy pathPackage.swift
File metadata and controls
29 lines (27 loc) · 792 Bytes
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: 6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Swiftlings",
products: [
.executable(
name: "swiftlings",
targets: ["Swiftlings"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
.package(url: "https://github.com/onevcat/Rainbow", from: "4.0.0"),
],
targets: [
.executableTarget(
name: "Swiftlings",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Rainbow", package: "Rainbow"),
]),
.testTarget(
name: "SwiftlingsTests",
dependencies: ["Swiftlings"]
),
]
)