-
Notifications
You must be signed in to change notification settings - Fork 8
/
Package.swift
48 lines (45 loc) · 1.27 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
// 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: "KukaiCoreSwift",
platforms: [
.iOS("15.0"),
],
products: [
.library(name: "KukaiCoreSwift", targets: ["KukaiCoreSwift"]),
],
dependencies: [
.package(name: "KukaiCryptoSwift", url: "https://github.com/kukai-wallet/kukai-crypto-swift", from: "1.0.23" /*.branch("develop")*/),
.package(name: "CustomAuth", url: "https://github.com/torusresearch/customauth-swift-sdk", from: "10.0.2"),
.package(name: "SignalRClient", url: "https://github.com/moozzyk/SignalR-Client-Swift", from: "0.8.0"),
.package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.19.3")
],
targets: [
.target(
name: "KukaiCoreSwift",
dependencies: [
"KukaiCryptoSwift",
"SDWebImage",
"CustomAuth",
"SignalRClient",
],
resources: [
.copy("Services/kukai-dex-calculations.js"),
.copy("Services/ledger_app_tezos.js"),
.copy("Services/taquito_local_forging.js"),
.copy("PrivacyInfo.xcprivacy")
]
),
.testTarget(
name: "KukaiCoreSwiftTests",
dependencies: [
"KukaiCoreSwift"
],
resources: [
.copy("Stubs"),
.copy("Services/MockData")
]
),
]
)