forked from yenom/BitcoinKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
29 lines (28 loc) · 928 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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "BitcoinKit",
products: [
.library(name: "BitcoinKit", targets: ["BitcoinKit"])
],
dependencies: [
.package(url: "https://github.com/vapor-community/copenssl.git", .exact("1.0.0-rc.1")),
.package(url: "https://github.com/Boilertalk/secp256k1.swift", .upToNextMinor(from: "0.1.0")),
.package(url: "https://github.com/vapor-community/random.git", .upToNextMinor(from: "1.2.0"))
],
targets: [
.target(
name: "BitcoinKit",
dependencies: ["BitcoinKitPrivate", "secp256k1", "Random"]
),
.target(
name: "BitcoinKitPrivate",
dependencies: ["COpenSSL", "secp256k1"]
),
.testTarget(
name: "BitcoinKitTests",
dependencies: ["BitcoinKit"]
)
],
swiftLanguageVersions: [4]
)