-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
82 lines (80 loc) · 2.03 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "RDOModules",
platforms: [
.iOS(.v11)
],
products: [
.library(
name: "HTTPSecurity",
targets: ["HTTPSecurity"]),
.library(
name: "HTTPSecurityObjC",
targets: ["HTTPSecurityObjC"]),
.library(
name: "Logging",
targets: ["Logging"]),
.library(
name: "LuhnCheck",
targets: ["LuhnCheck"]),
.library(
name: "OpenIDConnect",
targets: ["OpenIDConnect"]),
.library(
name: "QRGenerator",
targets: ["QRGenerator"])
],
dependencies: [
.package(
// A fork has been used to support both universal links and url schemes
// Forked from: https://github.com/openid/AppAuth-iOS
url: "https://github.com/Rool/AppAuth-iOS",
branch: "feature/custom-url-support"),
.package(
url: "https://github.com/AliSoftware/OHHTTPStubs",
from: "9.1.0"),
.package(
url: "https://github.com/krzyzanowskim/OpenSSL",
from: "3.1.4000"),
.package(
url: "https://github.com/Quick/Nimble",
exact: "10.0.0")
],
targets: [
.target(
name: "HTTPSecurity",
dependencies: ["HTTPSecurityObjC", "Logging"]),
.target(
name: "HTTPSecurityObjC",
dependencies: ["OpenSSL"]),
.testTarget(
name: "HTTPSecurityTests",
dependencies: ["HTTPSecurity", "Nimble"],
resources: [.process("Resources")]),
.target(
name: "Logging",
dependencies: [],
exclude: ["user-defined-settings.png"]),
.target(
name: "LuhnCheck",
dependencies: []),
.testTarget(
name: "LuhnCheckTests",
dependencies: ["LuhnCheck"]),
.target(
name: "QRGenerator",
dependencies: []),
.testTarget(
name: "QRGeneratorTests",
dependencies: ["QRGenerator"]),
.target(
name: "OpenIDConnect",
dependencies: [.product(name: "AppAuth", package: "AppAuth-iOS")]),
.testTarget(
name: "OpenIDConnectTests",
dependencies: ["OpenIDConnect", "OHHTTPStubs", .product(name: "OHHTTPStubsSwift", package: "OHHTTPStubs")]
)
]
)