forked from torusresearch/customauth-swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
29 lines (27 loc) · 1005 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
// swift-tools-version:5.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "CustomAuth",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "CustomAuth",
targets: ["CustomAuth"])
],
dependencies: [
.package(name: "TorusUtils", url: "https://github.com/torusresearch/torus-utils-swift.git", from: "5.0.0"),
.package(name: "jwt-kit", url: "https://github.com/vapor/jwt-kit.git", from: "4.0.0"),
.package(name: "JWTDecode", url: "https://github.com/auth0/JWTDecode.swift.git", from: "3.0.1")
],
targets: [
.target(
name: "CustomAuth",
dependencies: ["TorusUtils", "JWTDecode"]),
.testTarget(
name: "CustomAuthTests",
dependencies: ["CustomAuth", .product(name: "JWTKit", package: "jwt-kit")])
], swiftLanguageVersions: [.v5]
)