Skip to content

Commit ca33fca

Browse files
committed
Add local packages
1 parent b4febe2 commit ca33fca

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Package.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ let package = Package(
2525
.package(url: "https://github.com/vapor/jwt-kit.git", from: "4.13.5"),
2626
// Only used for DocC generation
2727
.package(url: "https://github.com/apple/swift-docc-plugin.git", from: "1.3.0"),
28+
// Local uniffi bindings
29+
.package(path: "../rust-sdks/livekit-uniffi"),
2830
],
2931
targets: [
3032
.target(
@@ -55,6 +57,7 @@ let package = Package(
5557
name: "LiveKitTestSupport",
5658
dependencies: [
5759
"LiveKit",
60+
.product(name: "LiveKitFFI", package: "livekit-uniffi"),
5861
],
5962
path: "Tests/LiveKitTestSupport"
6063
),

Package@swift-6.0.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ let package = Package(
2626
.package(url: "https://github.com/vapor/jwt-kit.git", from: "4.13.5"),
2727
// Only used for DocC generation
2828
.package(url: "https://github.com/apple/swift-docc-plugin.git", from: "1.3.0"),
29+
// Local uniffi bindings
30+
.package(path: "../rust-sdks/livekit-uniffi"),
2931
],
3032
targets: [
3133
.target(
@@ -56,6 +58,7 @@ let package = Package(
5658
name: "LiveKitTestSupport",
5759
dependencies: [
5860
"LiveKit",
61+
.product(name: "LiveKitFFI", package: "livekit-uniffi"),
5962
],
6063
path: "Tests/LiveKitTestSupport"
6164
),

0 commit comments

Comments
 (0)