Skip to content

Commit ab123d9

Browse files
authored
Merge pull request #7 from torusresearch/lock_starscream
fix: lock starscream for ios until fix is released for socket.io
2 parents f468ef2 + 7e43662 commit ab123d9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Package.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ let package = Package(
1313
.package(name: "BigInt", url: "https://github.com/attaswift/BigInt.git", from: "5.3.0"),
1414
.package(name: "CryptoSwift", url: "https://github.com/krzyzanowskim/CryptoSwift.git",from: "1.7.2"),
1515
.package(name: "secp256k1", url: "https://github.com/GigaBitcoin/secp256k1.swift", .upToNextMajor(from: "0.6.0")),
16-
.package(name: "SocketIO", url: "https://github.com/socketio/socket.io-client-swift", .upToNextMajor(from: "16.0.1"))
16+
.package(name: "SocketIO", url: "https://github.com/socketio/socket.io-client-swift", .upToNextMajor(from: "16.0.1")),
17+
.package(url: "https://github.com/daltoniam/Starscream", .exactItem("4.0.4")),
1718
],
1819
targets: [
1920
.binaryTarget(name: "libdklsnative",
@@ -25,7 +26,7 @@ let package = Package(
2526
),
2627
.target(
2728
name: "tss-client-swift",
28-
dependencies: ["BigInt", "CryptoSwift", "secp256k1", "SocketIO", "libdkls"]),
29+
dependencies: ["BigInt", "CryptoSwift", "secp256k1", "Starscream", "SocketIO", "libdkls"]),
2930
.testTarget(
3031
name: "tss-client-swiftTests",
3132
dependencies: ["tss-client-swift", "BigInt"]),

0 commit comments

Comments
 (0)