diff --git a/Package.swift b/Package.swift index f6711395f..fe1a09803 100644 --- a/Package.swift +++ b/Package.swift @@ -18,8 +18,8 @@ let package = Package( ], dependencies: [ // LK-Prefixed Dynamic WebRTC XCFramework - .package(name: "LiveKitWebRTC", url: "https://github.com/livekit/webrtc-xcframework.git", .exact("114.5735.13")), - .package(name: "SwiftProtobuf", url: "https://github.com/apple/swift-protobuf.git", .upToNextMajor(from: "1.25.2")), + .package(url: "https://github.com/livekit/webrtc-xcframework.git", exact: "114.5735.13"), + .package(url: "https://github.com/apple/swift-protobuf.git", .upToNextMajor(from: "1.25.2")), .package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.5.3")), .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.3.0"), ], @@ -29,8 +29,8 @@ let package = Package( name: "LiveKit", dependencies: [ .target(name: "CHeaders"), - "LiveKitWebRTC", - "SwiftProtobuf", + .product(name: "LiveKitWebRTC", package: "webrtc-xcframework"), + .product(name: "SwiftProtobuf", package: "swift-protobuf"), .product(name: "Logging", package: "swift-log"), ], path: "Sources"