forked from zksync-sdk/zksync2-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
40 lines (38 loc) · 1.1 KB
/
Package.swift
File metadata and controls
40 lines (38 loc) · 1.1 KB
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
// swift-tools-version: 5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "zkSync2-swift",
platforms: [
.iOS(.v13),
.macOS(.v10_15)
],
products: [
.library(
name: "ZkSync2",
targets: ["ZkSync2"]),
],
dependencies: [
.package(url: "https://github.com/DimensionDev/web3swift-zksync.git", branch: "zksync2-3.1.2"),
.package(url: "https://github.com/mxcl/PromiseKit", .exact("6.16.2")),
.package(
url: "https://github.com/Alamofire/Alamofire.git",
from: "5.4.3"
)
],
targets: [
.target(
name: "ZkSync2",
dependencies: [
.product(name: "web3swift", package: "web3swift-zksync"),
"Alamofire",
"PromiseKit",
]),
.testTarget(
name: "ZkSync2Tests",
dependencies: ["ZkSync2"],
resources: [
.process("Resources")
]),
]
)