-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
35 lines (33 loc) · 1.22 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
// 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: "SentinelWallet",
platforms: [
.iOS(.v13), .macOS(.v11)
],
products: [
.library(
name: "SentinelWallet",
targets: ["SentinelWallet"]
),
],
dependencies: [
.package(name: "SwiftProtobuf", url: "https://github.com/apple/swift-protobuf.git", from: "1.6.0"),
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.19.0"),
.package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0"),
.package(url: "https://github.com/SwiftyBeaver/SwiftyBeaver.git", .upToNextMinor(from: "2.0.0")),
.package(url: "https://github.com/solarlabsteam/HDWallet", .branch("spm"))
],
targets: [
.target(
name: "SentinelWallet",
dependencies: [
"SwiftProtobuf", "HDWallet", "SwiftyBeaver",
.product(name: "GRPC", package: "grpc-swift"),
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOHTTP1", package: "swift-nio"),
]
)
]
)