Skip to content

Commit e9b5bc2

Browse files
author
Roberto Casula
committed
Fix depl target
1 parent 494871d commit e9b5bc2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Package.swift

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1-
// swift-tools-version:5.0
1+
// swift-tools-version:5.3
22

33
import PackageDescription
44

55
let package = Package(
66
name: "PusherSwift",
7+
platforms: [
8+
.iOS(.v13),
9+
// .watchOS(.v6),
10+
// .tvOS(.v13),
11+
// .macOS(.v10_15)
12+
],
713
products: [
814
.library(name: "PusherSwift", targets: ["PusherSwift"])
915
],
1016
dependencies: [
11-
.package(url: "https://github.com/ashleymills/Reachability.swift.git", .upToNextMajor(from: "5.0.0")),
17+
.package(name: "Reachability", url: "https://github.com/ashleymills/Reachability.swift.git", .upToNextMajor(from: "5.0.0")),
1218
.package(url: "https://github.com/daltoniam/Starscream.git", .upToNextMajor(from: "3.1.0")),
1319
],
1420
targets: [

0 commit comments

Comments
 (0)