-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
24 lines (22 loc) · 901 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
// swift-tools-version:4.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Gift",
products: [
.library(
name: "GiftKit",
targets: ["GiftKit"])
],
dependencies: [
.package(url: "https://github.com/mw99/DataCompression.git", .exact("3.1.0")),
.package(url: "https://github.com/Carthage/Commandant.git", from: "0.15.0"),
.package(url: "https://github.com/thoughtbot/Curry.git", from: "4.0.1"),
.package(url: "https://github.com/Bouke/INI.git", from: "1.2.0"),
],
targets: [
.target(name: "gift", dependencies: ["Commandant", "Curry", "GiftKit"]),
.target(name: "GiftKit", dependencies: ["INI", "DataCompression"]),
.testTarget(name: "GiftKitTests", dependencies: ["GiftKit"]),
]
)