forked from keith/contacts-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (17 loc) · 729 Bytes
/
Package.swift
File metadata and controls
24 lines (17 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// swift-tools-version:5.8
/* Copyright © 2020 brian flagg <bflagg@acm.org>
This work is free. You can redistribute it and/or modify it under the
terms of the Do What The Fuck You Want To Public License, Version 2,
as published by Sam Hocevar. See the COPYING file for more details.
*/
import PackageDescription
let package = Package(
name: "Contacts",
platforms: [ .macOS(.v10_15) ], // minimum for async/await .macOS(.v10_11) Contacts
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0"),
],
targets: [
.executableTarget(name: "contacts", dependencies: [.product(name: "ArgumentParser", package: "swift-argument-parser") ] )
]
)