-
Notifications
You must be signed in to change notification settings - Fork 8
/
Package.swift
36 lines (35 loc) · 862 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
30
31
32
33
34
35
36
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "Deli",
platforms: [
.iOS(.v8),
.macOS(.v10_10),
.tvOS(.v9),
.watchOS(.v2)
],
products: [
.library(name: "Deli", targets: ["Deli"])
],
dependencies: [
.package(url: "https://github.com/Quick/Quick.git", .exact("2.2.0")),
.package(url: "https://github.com/Quick/Nimble.git", .exact("8.0.2"))
],
targets: [
.target(
name: "Deli",
dependencies: [],
path: "Sources/Deli"
),
.testTarget(
name: "DeliTests",
dependencies: [
"Deli",
"Quick",
"Nimble"
],
path: "Tests/DeliTests"
)
],
swiftLanguageVersions: [.v4, .v4_2, .v5]
)