-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPackage.swift
41 lines (39 loc) · 1.32 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
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "FCL",
platforms: [
.iOS(.v13),
],
products: [
.library(
name: "FCL",
targets: ["FCL"]
),
],
dependencies: [
.package(url: "https://github.com/outblock/flow-swift.git", .exact("0.3.1")),
.package(url: "https://github.com/daltoniam/Starscream", .exact("3.1.1")),
.package(url: "https://github.com/WalletConnect/WalletConnectSwiftV2", .exact("1.6.11")),
.package(url: "https://github.com/1024jp/GzipSwift", .exact("5.2.0")),
],
targets: [
.target(
name: "FCL",
dependencies: [
.product(name: "Flow", package: "flow-swift"),
.product(name: "Starscream", package: "Starscream"),
.product(name: "WalletConnect", package: "WalletConnectSwiftV2"),
.product(name: "WalletConnectAuth", package: "WalletConnectSwiftV2"),
.product(name: "Gzip", package: "GzipSwift"),
],
path: "Sources"
),
.testTarget(
name: "FCLTests",
dependencies: ["FCL"],
path: "Tests"
),
]
)