Skip to content

Commit 662dd51

Browse files
Update Package.swift
1 parent fc70745 commit 662dd51

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

Package.swift

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.5
1+
// swift-tools-version:5.6
22

33
import Foundation
44
import PackageDescription
@@ -24,19 +24,22 @@ let package = Package(
2424
)
2525
],
2626
dependencies: [
27-
.package(name: "WebRTC", url: "https://github.com/webrtc-sdk/Specs.git", .exact("114.5735.8")),
27+
.package(url: "https://github.com/webrtc-sdk/Specs.git", exact: "114.5735.8"),
2828
.package(url: "https://github.com/apple/swift-protobuf.git", from: "1.18.0")
2929
],
3030
targets: [
3131
.binaryTarget(name: "StreamVideo",
32-
url: "https://github.com/GetStream/stream-video-swift/releases/download/0.4.0/StreamVideo.zip",
32+
url: "https://github.com/GetStream/stream-video-swift/releases/download/0.4.1/StreamVideo.zip",
3333
checksum: "0123456789",
34-
dependencies: ["WebRTC", .product(name: "SwiftProtobuf", package: "swift-protobuf")]),
34+
dependencies: [
35+
.product(name: "WebRTC", package: "Specs"),
36+
.product(name: "SwiftProtobuf", package: "swift-protobuf")
37+
]),
3538
.binaryTarget(name: "StreamVideoSwiftUI",
36-
url: "https://github.com/GetStream/stream-video-swift/releases/download/0.4.0/StreamVideoSwiftUI.zip",
39+
url: "https://github.com/GetStream/stream-video-swift/releases/download/0.4.1/StreamVideoSwiftUI.zip",
3740
checksum: "0123456789"),
3841
.binaryTarget(name: "StreamVideoUIKit",
39-
url: "https://github.com/GetStream/stream-video-swift/releases/download/0.4.0/StreamVideoUIKit.zip",
42+
url: "https://github.com/GetStream/stream-video-swift/releases/download/0.4.1/StreamVideoUIKit.zip",
4043
checksum: "0123456789")
4144
]
4245
)

0 commit comments

Comments
 (0)