-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
19 lines (17 loc) · 924 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// swift-tools-version:5.4
import PackageDescription
let package = Package(name: "foto",
products: [
.executable(name: "foto", targets: ["foto"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", .upToNextMinor(from: "1.1.0")),
.package(url: "https://github.com/JohnSundell/ShellOut", .upToNextMinor(from: "2.3.0"))
],
targets: [
.executableTarget(name: "foto", dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "ShellOut", package: "ShellOut")
]),
.testTarget(name: "fotoTests", dependencies: ["foto"]),
])