forked from DP-3T/dp3t-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
31 lines (29 loc) · 812 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
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "DP3TSDK",
platforms: [
.iOS("13.5"),
],
products: [
.library(
name: "DP3TSDK",
targets: ["DP3TSDK"]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.6.0"),
.package(url: "https://github.com/IBM-Swift/Swift-JWT.git", from: "3.6.1"),
.package(url: "https://github.com/weichsel/ZIPFoundation/", .upToNextMajor(from: "0.9.0")),
],
targets: [
.target(
name: "DP3TSDK",
dependencies: ["SwiftJWT", "ZIPFoundation"]
),
.testTarget(
name: "DP3TSDKTests",
dependencies: ["DP3TSDK", "SwiftProtobuf"]
),
]
)