-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove starscream and use iOS 13+ URLSessionWebSocketTask natively
- Loading branch information
1 parent
2a7eb25
commit af5d7ad
Showing
5 changed files
with
347 additions
and
269 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
// swift-tools-version:5.0 | ||
// swift-tools-version:5.3 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "SwiftStomp", | ||
platforms: [ | ||
.iOS(.v10) | ||
.iOS(.v13), | ||
], | ||
products: [ | ||
.library(name: "SwiftStomp", targets: ["SwiftStomp"]) | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/daltoniam/Starscream.git", .exact("4.0.6")), | ||
.package(url: "https://github.com/ashleymills/Reachability.swift", .upToNextMinor(from: "5.0.0")) | ||
], | ||
targets: [ | ||
.target( | ||
name: "SwiftStomp", | ||
dependencies: ["Starscream", | ||
"Reachability"], | ||
dependencies: [ | ||
.product(name: "Reachability", package: "Reachability.swift"), | ||
], | ||
path: "SwiftStomp" | ||
) | ||
] | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.