forked from iamhyw/SwiftBinanceChain
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackage.swift
30 lines (29 loc) · 981 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.10
import PackageDescription
let package = Package(
name: "BinanceChain",
platforms: [
.iOS(.v15),
],
products: [
.library(name: "BinanceChain", targets: ["BinanceChain"])
],
dependencies: [
.package(url: "https://github.com/tangem/swift-protobuf-binaries.git", .upToNextMajor(from: "1.25.2-tangem1")),
.package(url: "https://github.com/tangem/SwiftyJSON.git", exact: "5.0.1-tangem1"),
.package(url: "https://github.com/Alamofire/Alamofire.git", from: "5.0.0"),
.package(url: "https://github.com/malcommac/SwiftDate", from: "7.0.0"),
],
targets: [
.target(
name: "BinanceChain",
dependencies: [
.product(name: "SwiftProtobuf", package: "swift-protobuf-binaries"),
"Alamofire",
"SwiftyJSON",
"SwiftDate",
],
path: "BinanceChain/Sources"
),
]
)