forked from nahitheper/pusher-websocket-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
31 lines (29 loc) · 874 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
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "PusherSwift",
platforms: [.iOS("13.0"), .macOS("10.15"), .tvOS("13.0")],
products: [
.library(name: "PusherSwift", targets: ["PusherSwift"])
],
dependencies: [
.package(url: "https://github.com/pusher/NWWebSocket.git", .upToNextMajor(from: "0.5.3")),
.package(url: "https://github.com/bitmark-inc/tweetnacl-swiftwrap", .upToNextMajor(from: "1.0.0")),
],
targets: [
.target(
name: "PusherSwift",
dependencies: [
"NWWebSocket",
"TweetNacl",
],
path: "Sources"
),
.testTarget(
name: "PusherSwiftTests",
dependencies: ["PusherSwift"],
path: "Tests"
)
],
swiftLanguageVersions: [.v5]
)