forked from auth0/JWTDecode.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
28 lines (26 loc) · 968 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
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "JWTDecode",
platforms: [.iOS(.v14), .macOS(.v11), .tvOS(.v14), .watchOS(.v7), .visionOS(.v1)],
products: [.library(name: "JWTDecode", targets: ["JWTDecode"])],
dependencies: [
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "7.0.0")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "12.0.0")),
],
targets: [
.target(
name: "JWTDecode",
dependencies: [],
path: "JWTDecode",
exclude: ["Info.plist"]),
.testTarget(
name: "JWTDecode.swiftTests",
dependencies: [
"JWTDecode",
.product(name: "Quick", package: "Quick"),
.product(name: "Nimble", package: "Nimble"),
],
path: "JWTDecodeTests",
exclude: ["Info.plist"])
])