Skip to content

Commit

Permalink
fix SPM warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroshihorie committed Feb 22, 2024
1 parent dd327bf commit cb7b520
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
],
Expand All @@ -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"
Expand Down

0 comments on commit cb7b520

Please sign in to comment.