-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
37 lines (35 loc) · 994 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
31
32
33
34
35
36
37
// swift-tools-version:5.4
import PackageDescription
let package = Package(
name: "W3Connect",
platforms: [
.iOS(.v12),
.macOS(.v10_12),
],
products: [
.library(
name: "W3Connect",
targets: ["W3Connect"]),
],
dependencies: [
// Core dependencies
.package(name: "BigInt",
url: "https://github.com/attaswift/BigInt.git",
from: "5.0.0"),
.package(name: "CryptoSwift",
url: "https://github.com/krzyzanowskim/CryptoSwift.git",
from: "1.0.0"),
.package(name: "secp256k1",
url: "https://github.com/GigaBitcoin/secp256k1.swift",
from: "0.3.0"),
.package(name: "PromiseKit",
url: "https://github.com/mxcl/PromiseKit.git",
from: "6.0.0"),
],
targets: [
.target(
name: "W3Connect",
dependencies: ["BigInt", "CryptoSwift", "PromiseKit", "secp256k1"],
path: "Sources"),
],
swiftLanguageVersions: [.version("5.5")])