-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackage.swift
43 lines (41 loc) · 1.43 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
// swift-tools-version: 5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "FlowWalletKit",
platforms: [
.iOS(.v13),
],
products: [
.library(
name: "FlowWalletKit",
targets: ["FlowWalletKit"]
),
],
dependencies: [
.package(url: "https://github.com/kishikawakatsumi/KeychainAccess", from: "4.2.2"),
.package(url: "https://github.com/Outblock/flow-swift", .revisionItem("489177ca2f3fee133cf3c1ce7d6c0cc2892c34ef")),
.package(url: "https://github.com/trustwallet/wallet-core", .upToNextMajor(from: "4.3.2")),
],
targets: [
.target(
name: "FlowWalletKit",
dependencies: [
"KeychainAccess",
.product(name: "Flow", package: "flow-swift"),
.product(name: "WalletCore", package: "wallet-core"),
.product(name: "WalletCoreSwiftProtobuf", package: "wallet-core"),
],
path: "iOS/FlowWalletKit/Sources"
),
.testTarget(
name: "FlowWalletKitTests",
dependencies: [
"FlowWalletKit",
.product(name: "Flow", package: "flow-swift"),
.product(name: "WalletCore", package: "wallet-core")
],
path: "iOS/FlowWalletKit/Tests"
),
]
)