forked from horizontalsystems/HdWalletKit.Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
35 lines (33 loc) · 1.09 KB
/
Copy pathPackage.swift
File metadata and controls
35 lines (33 loc) · 1.09 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
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "HdWalletKit",
platforms: [
.iOS(.v13),
],
products: [
.library(
name: "HdWalletKit",
targets: ["HdWalletKit"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "3.0.0"),
.package(url: "https://github.com/GigaBitcoin/secp256k1.swift.git", exact: .init(0, 10, 0)),
.package(url: "https://github.com/just-software-dev/HsCryptoKit.Swift.git", branch: "main"),
],
targets: [
.target(
name: "HdWalletKit",
dependencies: [
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "_CryptoExtras", package: "swift-crypto"),
.product(name: "secp256k1", package: "secp256k1.swift"),
.product(name: "HsCryptoKit", package: "HsCryptoKit.Swift"),
]),
.testTarget(
name: "HdWalletKitTests",
dependencies: [
"HdWalletKit"
]),
]
)