forked from WalletConnect/WalletConnectSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
26 lines (25 loc) · 838 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
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "WalletConnectSwift",
platforms: [
.macOS(.v10_14), .iOS(.v11),
],
products: [
.library(
name: "WalletConnectSwift",
targets: ["WalletConnectSwift"])
],
dependencies: [
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.4.0")),
.package(url: "https://github.com/daltoniam/Starscream.git", .upToNextMinor(from: "3.1.0"))
],
targets: [
.target(
name: "WalletConnectSwift",
dependencies: ["CryptoSwift", "Starscream"],
path: "Sources"),
.testTarget(name: "WalletConnectSwiftTests", dependencies: ["WalletConnectSwift"], path: "Tests"),
],
swiftLanguageVersions: [.v5]
)