forked from spruceid/mobile-sdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
30 lines (28 loc) · 898 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
28
29
30
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
// Swift Package: WalletSdkRs
import PackageDescription;
let package = Package(
name: "WalletSdkRs",
platforms: [
.iOS(.v13),
.macOS(.v10_15)
],
products: [
.library(
name: "WalletSdkRs",
targets: ["WalletSdkRs"]
)
],
dependencies: [ ],
targets: [
.binaryTarget(name: "RustFramework", url: "https://github.com/spruceid/wallet-sdk-rs/releases/download/0.0.6/RustFramework.xcframework.zip", checksum: "45fbdb98dc8137a71f4442ba565877a7766a035791278bf890565fa68f4be34b"),
.target(
name: "WalletSdkRs",
dependencies: [
.target(name: "RustFramework")
],
path: "./WalletSdkRs/Sources/WalletSdkRs"
)
]
)