forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
27 lines (25 loc) · 850 Bytes
/
Package.swift
File metadata and controls
27 lines (25 loc) · 850 Bytes
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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "WalletCore",
platforms: [.iOS(.v13)],
products: [
.library(
name: "WalletCore", targets: ["WalletCore", "SwiftProtobuf"]
)
],
dependencies: [
],
targets: [
.binaryTarget(
name: "WalletCore",
url: "https://github.com/trustwallet/wallet-core/releases/download/2.6.34/WalletCore.xcframework.zip",
checksum: "1595ed7e1efb85e939dbbc8e7b763a8d4a4285d209f622aa960701b0cc054f0d"
),
.binaryTarget(
name: "SwiftProtobuf",
url: "https://github.com/trustwallet/wallet-core/releases/download/2.6.34/SwiftProtobuf.xcframework.zip",
checksum: "c7839954f10427df3f47629880f1ed76c39201500c8e5efcba808e37893995b9"
)
]
)