Skip to content

Commit e3e6a40

Browse files
authored
Test release (#1)
1 parent 0c9c40d commit e3e6a40

File tree

3 files changed

+1970
-0
lines changed

3 files changed

+1970
-0
lines changed

Package.swift

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// swift-tools-version: 5.9
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "LiveKitUniFFI",
7+
platforms: [
8+
.iOS(.v13),
9+
.macOS(.v10_15),
10+
.macCatalyst(.v14),
11+
.tvOS(.v17),
12+
],
13+
products: [
14+
.library(
15+
name: "LiveKitUniFFI",
16+
targets: ["LiveKitUniFFI"]
17+
)
18+
],
19+
targets: [
20+
.target(
21+
name: "LiveKitUniFFI",
22+
dependencies: ["RustLiveKitUniFFI"]
23+
),
24+
.binaryTarget(
25+
name: "RustLiveKitUniFFI",
26+
url: "https://github.com/livekit/livekit-uniffi-xcframework/releases/download/0.0.1/RustLiveKitUniFFI.xcframework.zip",
27+
checksum: "982f5e0d965bcbf9840cd50a979bf12e3f4ed74ba4326a15cc4e1aaea1670287"
28+
)
29+
]
30+
)

Package@swift-6.0.swift

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// swift-tools-version: 6.0
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "LiveKitUniFFI",
7+
platforms: [
8+
.iOS(.v13),
9+
.macOS(.v10_15),
10+
.macCatalyst(.v14),
11+
.visionOS(.v2),
12+
.tvOS(.v17),
13+
],
14+
products: [
15+
.library(
16+
name: "LiveKitUniFFI",
17+
targets: ["LiveKitUniFFI"]
18+
)
19+
],
20+
targets: [
21+
.target(
22+
name: "LiveKitUniFFI",
23+
dependencies: ["RustLiveKitUniFFI"]
24+
),
25+
.binaryTarget(
26+
name: "RustLiveKitUniFFI",
27+
url: "https://github.com/livekit/livekit-uniffi-xcframework/releases/download/0.0.1/RustLiveKitUniFFI.xcframework.zip",
28+
checksum: "982f5e0d965bcbf9840cd50a979bf12e3f4ed74ba4326a15cc4e1aaea1670287"
29+
)
30+
]
31+
)

0 commit comments

Comments
 (0)