forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Package.swift
27 lines (25 loc) · 850 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
// 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.31/WalletCore.xcframework.zip",
checksum: "29d88807485f88992e00a5b7ed1ddf53ca57dacb89ba5e5368dc931102600879"
),
.binaryTarget(
name: "SwiftProtobuf",
url: "https://github.com/trustwallet/wallet-core/releases/download/2.6.31/SwiftProtobuf.xcframework.zip",
checksum: "d1035aa8a32f2483305bbe9cd3d5774bf6c1a65ce5a37213c9ee651c78873a55"
)
]
)