-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
32 lines (30 loc) · 1.36 KB
/
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
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "ServerAppleSignInAccount",
products: [
.library(
name: "ServerAppleSignInAccount",
targets: ["ServerAppleSignInAccount"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/SyncServerII/ServerAccount.git", from: "0.0.1"),
.package(url: "https://github.com/SyncServerII/ServerShared.git", from: "0.0.4"),
.package(name: "SwiftJWT", url: "https://github.com/IBM-Swift/Swift-JWT.git", from: "3.6.1"),
.package(url: "https://github.com/crspybits/CredentialsAppleSignIn.git", from: "0.0.1"),
.package(url: "https://github.com/SyncServerII/AppleJWTDecoder.git", from: "0.0.1"),
.package(url: "https://github.com/IBM-Swift/Kitura.git", from: "2.9.1"),
],
targets: [
.target(
name: "ServerAppleSignInAccount",
dependencies: ["ServerAccount", "SwiftJWT", "CredentialsAppleSignIn",
"Kitura", "ServerShared", "AppleJWTDecoder"
]),
.testTarget(
name: "ServerAppleSignInAccountTests",
dependencies: ["ServerAppleSignInAccount", "Kitura"]),
]
)