-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
44 lines (41 loc) · 1.96 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
// swift-tools-version: 5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "WalletConnectV2SwiftUI",
platforms: [
.iOS(.v14)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "WalletConnectV2SwiftUI",
targets: ["WalletConnectV2SwiftUI"]),
],
dependencies: [
.package(url: "https://github.com/WalletConnect/Web3.swift", exact: "1.0.2"),
.package(url: "https://github.com/daltoniam/Starscream", exact: "3.1.2"),
.package(url: "https://github.com/WalletConnect/WalletConnectSwiftV2.git", exact: "1.13.0"),
.package(url: "https://github.com/flypaper0/solana-swift", branch: "feature/available-13"),
.package(url: "https://github.com/WalletConnect/HDWallet", branch: "develop"),
.package(url: "https://github.com/WalletConnect/web3modal-swift", exact: "1.3.0"),
],
targets: [
.target(
name: "WalletConnectV2SwiftUI",
dependencies: [
.product(name: "HDWalletKit", package: "HDWallet"),
.product(name: "SolanaSwift", package: "solana-swift"),
.product(name: "Web3", package: "Web3.swift"),
.product(name: "Web3PromiseKit", package: "Web3.swift"),
.product(name: "Web3ContractABI", package: "Web3.swift"),
.product(name: "Starscream", package: "Starscream"),
.product(name: "WalletConnect", package: "WalletConnectSwiftV2"),
.product(name: "WalletConnectAuth", package: "WalletConnectSwiftV2"),
.product(name: "WalletConnectModal", package: "WalletConnectSwiftV2"),
.product(name: "Web3Modal", package: "Web3Modal-Swift")
],
path: "Sources"
)
]
)